diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fecbb19..b5f71b9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,6 +29,7 @@ jobs: - '3.11' - '3.12' - '3.13' + - '3.14' - 'pypy-3.8' - 'pypy-3.9' - 'pypy-3.10' diff --git a/CHANGELOG.md b/CHANGELOG.md index e2aa7f7..227d361 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +v3.4.0 (in development) +----------------------- +- Support Python 3.14 + v3.3.0 (2025-06-27) ------------------- - Added `{normalized_version}` to the fields available to the `write` and diff --git a/docs/changelog.rst b/docs/changelog.rst index 9270205..1acbc22 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,6 +3,11 @@ Changelog ========= +v3.4.0 (in development) +----------------------- +- Support Python 3.14 + + v3.3.0 (2025-06-27) ------------------- - Added ``{normalized_version}`` to the fields available to the ``write`` and diff --git a/pyproject.toml b/pyproject.toml index 3dd9371..2221e2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Framework :: Hatch", diff --git a/src/versioningit/__init__.py b/src/versioningit/__init__.py index 0fce779..9714d3f 100644 --- a/src/versioningit/__init__.py +++ b/src/versioningit/__init__.py @@ -44,7 +44,7 @@ for more information. """ -__version__ = "3.3.0" +__version__ = "3.4.0.dev1" __author__ = "John Thorvald Wodder II" __author_email__ = "versioningit@varonathe.org" __license__ = "MIT" diff --git a/tox.ini b/tox.ini index 7d97a55..2cafb8a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint,typing,py38,py39,py310,py311,py312,py313,pypy3,py-oldsetup +envlist = lint,typing,py38,py39,py310,py311,py312,py313,py314,pypy3,py-oldsetup skip_missing_interpreters = True isolated_build = True minversion = 3.3.0