memberjojo 2.0__tar.gz → 2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: memberjojo
3
- Version: 2.0
3
+ Version: 2.1
4
4
  Summary: memberjojo - tools for working with members.
5
5
  Author-email: Duncan Bellamy <dunk@denkimushi.com>
6
6
  Requires-Python: >=3.8
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '2.0'
32
- __version_tuple__ = version_tuple = (2, 0)
31
+ __version__ = version = '2.1'
32
+ __version_tuple__ = version_tuple = (2, 1)
33
33
 
34
- __commit_id__ = commit_id = 'g9cd84a0d7'
34
+ __commit_id__ = commit_id = 'gcf0cc58f7'
@@ -124,11 +124,14 @@ class Member(MojoSkel):
124
124
  ) -> Optional[tuple]:
125
125
  """
126
126
  Resolve a member name from a free-text full name.
127
- Search order:
128
- 1. first + last
129
- 2. middle + last (if three parts)
130
- 3. initial 1st letter + last
131
- 4. initial 2nd letter + last (for two-letter initials)
127
+
128
+ **Search order**
129
+
130
+ 1. first + last
131
+ 2. middle + last (if three parts)
132
+ 3. initial 1st letter + last
133
+ 4. initial 2nd letter + last (for two-letter initials)
134
+
132
135
  Returns (first_name, last_name) or None.
133
136
 
134
137
  :param full_name: Full name of the member to find.
File without changes
File without changes
File without changes
File without changes