diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 97a5f89..9efa447 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -18,6 +18,25 @@ This section covers the changes between major version 2 and version 3. .. towncrier release notes start +Version 3.0.4 +============= + +:Released: 2025-01-24 +:Maintainer: Tom Schraitle + + +Bug Fixes +--------- + +* :gh:`459`: Fix 3.0.3: + + * :pr:`457`: Re-enable Trove license identifier + * :pr:`456`: Fix source dist file + + +---- + + Version 3.0.3 ============= diff --git a/MANIFEST.in b/MANIFEST.in index e37851c..fa2dcb2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,26 @@ +include *.md include *.rst include *.txt -include tests/test_*.py +include CONTRIBUTORS +include CITATION.cff +include Makefile +include changelog.d/* +graft docs/** +include tests/*.py +include tox.ini +include .pytest.ini +include .ruff.toml +include uv.lock + +# The dot files: +include .coveragerc +include .editorconfig +include .gitignore +include .readthedocs.yaml + prune docs/_build recursive-exclude .github * +prune docs/**/__pycache__ global-exclude __pycache__ diff --git a/docs/usage/semver-version.rst b/docs/usage/semver-version.rst index df04a74..c771a00 100644 --- a/docs/usage/semver-version.rst +++ b/docs/usage/semver-version.rst @@ -4,4 +4,4 @@ Getting the Version of semver To know the version of semver itself, use the following construct:: >>> semver.__version__ - '3.0.3' + '3.0.4' diff --git a/pyproject.toml b/pyproject.toml index 3398628..6048167 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ classifiers = [ "Environment :: Web Environment", "Intended Audience :: Developers", "Development Status :: 5 - Production/Stable", - # "License :: OSI Approved :: BSD License", + "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", diff --git a/src/semver/__about__.py b/src/semver/__about__.py index d971e03..21494e6 100644 --- a/src/semver/__about__.py +++ b/src/semver/__about__.py @@ -16,7 +16,7 @@ """ #: Semver version -__version__ = "3.0.3" +__version__ = "3.0.4" #: Original semver author __author__ = "Kostiantyn Rybnikov"