Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
derek73 committed Feb 8, 2020
1 parent aea7269 commit 1d0b8f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions docs/release_log.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Release Log
===========
* 1.0.6 - February 8, 2020
- Fix Python 3.8 syntax error (#104)
* 1.0.5 - Dec 12, 2019
- Fix suffix parsing bug in comma parts (#98)
- Fix deprecation warning on Python 3.7 (#94)
Expand Down Expand Up @@ -110,7 +112,7 @@ Release Log
- Generate documentation using sphinx and host on readthedocs.
* 0.2.10 - May 6, 2014
- 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>`_).
- Add some judicial and other common titles. (#9)
- Add some judicial and other common titles. (#9)
* 0.2.9 - Apr 1, 2014
- 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>`_).
* 0.2.8 - Oct 25, 2013
Expand All @@ -123,7 +125,7 @@ Release Log
* 0.2.5 - Feb 11, 2013
- Set logging handler to NullHandler
- Remove 'ben' from PREFIXES because it's more common as a name than a prefix.
- Deprecate BlankHumanNameError. Do not raise exceptions if full_name is empty string.
- Deprecate BlankHumanNameError. Do not raise exceptions if full_name is empty string.
* 0.2.4 - Feb 10, 2013
- 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>`_.
- 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>`_.
Expand All @@ -134,12 +136,12 @@ Release Log
- tests/test.py can now take an optional name argument that will return repr() for that name.
* 0.2.3 - Fix overzealous "Mac" regex
* 0.2.2 - Fix parsing error
* 0.2.0
* 0.2.0
- Significant refactor of parsing logic. Handle conjunctions and prefixes before
parsing into attribute buckets.
- Support attribute overriding by assignment.
- Support multiple titles.
- Lowercase titles constants to fix bug with comparison.
- Support multiple titles.
- Lowercase titles constants to fix bug with comparison.
- Move documentation to README.rst, add release log.
* 0.1.4 - Use set() in constants for improved speed. setuptools compatibility - sketerpot
* 0.1.3 - Add capitalization feature - twotwo
Expand Down
2 changes: 1 addition & 1 deletion nameparser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (1, 0, 5)
VERSION = (1, 0, 6)
__version__ = '.'.join(map(str, VERSION))
__author__ = "Derek Gulbranson"
__author_email__ = '[email protected]'
Expand Down

0 comments on commit 1d0b8f8

Please sign in to comment.