From 81f0bc4db45813aca0d9701801ddd67970acaba6 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Sun, 19 Nov 2023 09:01:48 -0500 Subject: [PATCH] =?UTF-8?q?v2.3.0=20=E2=80=94=20Hatch=20support?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Always read `.hg_archival.txt` files using UTF-8 encoding - Added support for using versioningit with [Hatch](https://hatch.pypa.io) --- CHANGELOG.md | 4 ++-- docs/changelog.rst | 4 ++-- src/versioningit/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5097a9..5984494 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v2.3.0 (in development) ------------------------ +v2.3.0 (2023-11-19) +------------------- - Always read `.hg_archival.txt` files using UTF-8 encoding - Added support for using versioningit with [Hatch](https://hatch.pypa.io) diff --git a/docs/changelog.rst b/docs/changelog.rst index 42e433c..651b7eb 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,8 +3,8 @@ Changelog ========= -v2.3.0 (in development) ------------------------ +v2.3.0 (2023-11-19) +------------------- - Always read :file:`.hg_archival.txt` files using UTF-8 encoding - Added support for using versioningit with `Hatch `_ diff --git a/src/versioningit/__init__.py b/src/versioningit/__init__.py index b28add3..eae3a5a 100644 --- a/src/versioningit/__init__.py +++ b/src/versioningit/__init__.py @@ -43,7 +43,7 @@ for more information. """ -__version__ = "2.3.0.dev1" +__version__ = "2.3.0" __author__ = "John Thorvald Wodder II" __author_email__ = "versioningit@varonathe.org" __license__ = "MIT"