From 8e86565bdde6cac1b9b4b8a34876c5b780576453 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Wed, 13 Dec 2023 19:14:09 -0500 Subject: [PATCH] =?UTF-8?q?v3.0.0=20=E2=80=94=20Support=20`onbuild`=20with?= =?UTF-8?q?=20Hatch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Migrated from setuptools to hatch - Support using the `onbuild` step with Hatch - **Breaking**: The `build_dir` argument passed to `Versioningit.do_onbuild()` and `onbuild` method callables has been changed to an `OnbuildFileProvider` ABC --- 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 3e4f12f..0b16a07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v3.0.0 (in development) ------------------------ +v3.0.0 (2023-12-13) +------------------- - Migrated from setuptools to hatch - Support using the `onbuild` step with Hatch - **Breaking**: The `build_dir` argument passed to `Versioningit.do_onbuild()` diff --git a/docs/changelog.rst b/docs/changelog.rst index c5d44ae..1f42052 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,8 +3,8 @@ Changelog ========= -v3.0.0 (in development) ------------------------ +v3.0.0 (2023-12-13) +------------------- - Migrated from setuptools to hatch - Support using the ``onbuild`` step with Hatch - **Breaking**: The ``build_dir`` argument passed to diff --git a/src/versioningit/__init__.py b/src/versioningit/__init__.py index 7c9af19..c908432 100644 --- a/src/versioningit/__init__.py +++ b/src/versioningit/__init__.py @@ -43,7 +43,7 @@ for more information. """ -__version__ = "3.0.0.dev1" +__version__ = "3.0.0" __author__ = "John Thorvald Wodder II" __author_email__ = "versioningit@varonathe.org" __license__ = "MIT"