Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ authors:
repository-code: "https://github.com/derek73/python-nameparser"
url: "https://github.com/derek73/python-nameparser"
license: LGPL-2.1-or-later
version: "2.2.0"
version: "2.3.0"
21 changes: 18 additions & 3 deletions docs/release_log.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
Release Log
===========
* 2.3.0 - Unreleased

nameparser 2.3 is under development.
* 2.3.0 - September 12, 2026

nameparser 2.3 is parsing fixes and new honorific vocabulary;
nothing in the API is removed or renamed.

The fixes cluster around post-nominals and titles. A space-separated
run of post-nominals keeps the spacing the writer typed, and the
acronyms that are also surnames -- Rai, Cha, Ba -- no longer take a
name's family name. A run of titles addresses by its last, and a
trailing abbreviated title reads as a title. CJK names and honorifics
written with a full stop of any width now parse. The additions are
renunciate and royal given-name titles, Devanagari and the first
Bengali honorifics, and two ``AmbiguityKind`` members that report a
reading nothing in the name decided.

One incompatibility: a ``Lexicon`` pickled by 2.1.x or 2.2.x with a
caller-added wide-stop or NFD entry no longer loads; the full-stop
bullet below has the remedy.

**Behavior Changes**

Expand Down
2 changes: 1 addition & 1 deletion nameparser/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
#: "dev" through the cycle, cleared at release. It normalizes to
#: 2.3.0.dev0, which sorts above 2.2.0 and BELOW 2.3.0, so an install
#: from master can never masquerade as the release it precedes.
PRE_RELEASE = "dev"
PRE_RELEASE = ""
__version__ = ".".join(map(str, VERSION)) + PRE_RELEASE