Skip to content

Commit 1484006

Browse files
derek73claude
andcommitted
Release 2.0.0
Two release candidates preceded this (rc1 2026-07-23, rc2 2026-07-26). Verified: __version__ == "2.0.0" (packaging confirms not a pre-release), wheel/sdist build and pass twine check, full gate green (2395 tests, mypy, ruff). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 6dc5261 commit 1484006

3 files changed

Lines changed: 6 additions & 8 deletions

File tree

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ authors:
99
repository-code: "https://github.com/derek73/python-nameparser"
1010
url: "https://github.com/derek73/python-nameparser"
1111
license: LGPL-2.1-or-later
12-
version: "1.4.0"
12+
version: "2.0.0"

docs/release_log.rst

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
Release Log
22
===========
3-
* 2.0.0 - unreleased
3+
* 2.0.0 - July 27, 2026
44

5-
**2.0.0rc2 released 2026-07-26** (rc1 on 2026-07-23) for testing
6-
ahead of the final
7-
2.0.0. Install it with ``pip install --pre nameparser`` (a
8-
pre-release is not selected by a plain ``pip install``); please
9-
report anything the migration missed on `issue #284
5+
Two release candidates preceded this release (rc1 on 2026-07-23,
6+
rc2 on 2026-07-26). Please report anything the migration missed on
7+
`issue #284
108
<https://github.com/derek73/python-nameparser/issues/284>`_. The
119
notes below describe 2.0.0 as a whole.
1210

nameparser/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
#: PEP 440 pre-release/dev segment appended to the numeric version, or
66
#: "" for a final release. Joined WITHOUT a dot ("2.0.0rc1", not
77
#: "2.0.0.rc1"); setuptools reads __version__ as the package version.
8-
PRE_RELEASE = "rc2"
8+
PRE_RELEASE = ""
99
__version__ = ".".join(map(str, VERSION)) + PRE_RELEASE

0 commit comments

Comments
 (0)