diff --git a/docs/changelog.rst b/docs/changelog.rst index a25a11ec..18ec30f5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -10,10 +10,14 @@ functionality or contain necessary breaking changes. Minor releases are primarily used for bugfix or small features which are unlikely to break users' testsuites. -0.13.1 (Unreleased) +Unreleased +---------- + +0.14.0 (2023-10-04) ------------------- -* Remove support for `python3.6` +* Add official support for ``python3.12`` +* Remove support for ``python3.6`` and ``python3.7`` 0.13.0 (2023-04-29) ------------------- diff --git a/nose2/__init__.py b/nose2/__init__.py index 455352d6..32ac8b9b 100644 --- a/nose2/__init__.py +++ b/nose2/__init__.py @@ -1,5 +1,5 @@ from nose2.main import discover, main -__version__ = "0.13.0" +__version__ = "0.14.0" __all__ = ("__version__", "discover", "main") diff --git a/pyproject.toml b/pyproject.toml index a6834b40..d4a5394c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ license = {text = "BSD-2-Clause"} authors = [ { name = "Stephen Rosen", email = "dev@nose2.io" }, ] -requires-python = ">=3.6" +requires-python = ">=3.8" classifiers=[ "Development Status :: 4 - Beta", "Environment :: Console", @@ -26,7 +26,6 @@ classifiers=[ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",