From bae0b7ca7ce3f2a3268290ff9b4b379e7ed3a779 Mon Sep 17 00:00:00 2001 From: Tom Schraitle Date: Mon, 20 Jan 2025 09:08:20 +0100 Subject: [PATCH] Fix #459: Fix 3.0.3 * Raise version 3.0.3 -> 3.0.4 * Fix #457: Re-enable Trove license identifier * Fix #456: Fix source dist file - Sort MANIFEST.in and add missing files - Add CONTRIBUTORS, .pytest.ini, .ruff.toml, and uv.lock * Update Changelog --- CHANGELOG.rst | 19 +++++++++++++++++++ MANIFEST.in | 20 +++++++++++++++++++- docs/usage/semver-version.rst | 2 +- pyproject.toml | 2 +- src/semver/__about__.py | 2 +- 5 files changed, 41 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 97a5f89f..9efa4477 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 e37851c9..fa2dcb20 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 df04a74f..c771a006 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 33986287..60481679 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 d971e038..21494e68 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"