Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
=============

Expand Down
20 changes: 19 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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__
2 changes: 1 addition & 1 deletion docs/usage/semver-version.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/semver/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"""

#: Semver version
__version__ = "3.0.3"
__version__ = "3.0.4"

#: Original semver author
__author__ = "Kostiantyn Rybnikov"
Expand Down
Loading