From 6c38134184a0fc2b07b7b8cc2ad68be5ed9bb8ae Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Sat, 20 Jul 2024 08:40:39 -0400 Subject: [PATCH] =?UTF-8?q?v3.1.2=20=E2=80=94=20Bugfix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Drop support for Python 3.7 - **Bugfix**: When using `versioningit` with Hatch, don't run the `onbuild` step for editable builds --- 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 d297692..e1a7efe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v3.1.2 (in development) ------------------------ +v3.1.2 (2024-07-20) +------------------- - Drop support for Python 3.7 - **Bugfix**: When using `versioningit` with Hatch, don't run the `onbuild` step for editable builds diff --git a/docs/changelog.rst b/docs/changelog.rst index ffc293c..6969d36 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,8 +3,8 @@ Changelog ========= -v3.2.0 (in development) ------------------------ +v3.1.2 (2024-07-20) +------------------- - Drop support for Python 3.7 - **Bugfix**: When using `versioningit` with Hatch, don't run the `onbuild` step for editable builds diff --git a/src/versioningit/__init__.py b/src/versioningit/__init__.py index f6cf509..d92f0dc 100644 --- a/src/versioningit/__init__.py +++ b/src/versioningit/__init__.py @@ -43,7 +43,7 @@ for more information. """ -__version__ = "3.1.2.dev1" +__version__ = "3.1.2" __author__ = "John Thorvald Wodder II" __author_email__ = "versioningit@varonathe.org" __license__ = "MIT"