8000 v1.0.6 · derek73/python-nameparser@1d0b8f8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1d0b8f8

Browse files
committed
v1.0.6
1 parent aea7269 commit 1d0b8f8

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

docs/release_log.rst

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Release Log
22
===========
3+
* 1.0.6 - February 8, 2020
4+
- Fix Python 3.8 syntax error (#104)
35
* 1.0.5 - Dec 12, 2019
46
- Fix suffix parsing bug in comma parts (#98)
57
- Fix deprecation warning on Python 3.7 (#94)
@@ -110,7 +112,7 @@ Release Log
110112
- Generate documentation using sphinx and host on readthedocs.
111113
* 0.2.10 - May 6, 2014
112114
- If name is only a title and one part, assume it's a last name instead of a first name, with exceptions for some titles like 'Sir'. (`#7 <https://github.com/derek73/python-nameparser/issues/7>`_).
113-
- Add some judicial and other common titles. (#9)
115+
- Add some judicial and other common titles. (#9)
114116
* 0.2.9 - Apr 1, 2014
115117
- Add a new nickname attribute containing anything in parenthesis or double quotes (`Issue 33 <https://code.google.com/p/python-nameparser/issues/detail?id=33>`_).
116118
* 0.2.8 - Oct 25, 2013
@@ -123,7 +125,7 @@ Release Log
123125
* 0.2.5 - Feb 11, 2013
124126
- Set logging handler to NullHandler
125127
- Remove 'ben' from PREFIXES because it's more common as a name than a prefix.
126-
- Deprecate BlankHumanNameError. Do not raise exceptions if full_name is empty string.
128+
- Deprecate BlankHumanNameError. Do not raise exceptions if full_name is empty string.
127129
* 0.2.4 - Feb 10, 2013
128130
- Adjust logging, don't set basicConfig. Fix `Issue 10 <https://code.google.com/p/python-nameparser/issues/detail?id=10>`_ and `Issue 26 <https://code.google.com/p/python-nameparser/issues/detail?id=26>`_.
129131
- Fix handling of single lower case initials that are also conjunctions, e.g. "john e smith". Re `Issue 11 <https://code.google.com/p/python-nameparser/issues/detail?id=11>`_.
@@ -134,12 +136,12 @@ Release Log
134136
- tests/test.py can now take an optional name argument that will return repr() for that name.
135137
* 0.2.3 - Fix overzealous "Mac" regex
136138
* 0.2.2 - Fix parsing error
137-
* 0.2.0
139+
* 0.2.0
138140
- Significant refactor of parsing logic. Handle conjunctions and prefixes before
139141
parsing into attribute buckets.
140142
- Support attribute overriding by assignment.
141-
- Support multiple titles.
142-
- Lowercase titles constants to fix bug with comparison.
143+
- Support multiple titles.
144+
- Lowercase titles constants to fix bug with comparison.
143145
- Move documentation to README.rst, add release log.
144146
* 0.1.4 - Use set() in constants for improved speed. setuptools compatibility - sketerpot
145147
* 0.1.3 - Add capitalization feature - twotwo

nameparser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (1, 0, 5)
1+
VERSION = (1, 0, 6)
22
__version__ = '.'.join(map(str, VERSION))
33
__author__ = "Derek Gulbranson"
44
__author_email__ = 'derek73@gmail.com'

0 commit comments

Comments
 (0)
0