8000 Fix #459: Fix 3.0.3 · python-semver/python-semver@bae0b7c · GitHub
[go: up one dir, main page]

Skip to content

Commit bae0b7c

Browse files
committed
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
1 parent 486e489 commit bae0b7c

File tree

5 files changed

+41
-4
lines changed

5 files changed

+41
-4
lines changed

CHANGELOG.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,25 @@ This section covers the changes between major version 2 and version 3.
1818

1919
.. towncrier release notes start
2020
21+
Version 3.0.4
22+
=============
23+
24+
:Released: 2025-01-24
25+
:Maintainer: Tom Schraitle
26+
27+
28+
Bug Fixes
29+
---------
30+
31+
* :gh:`459`: Fix 3.0.3:
32+
33+
* :pr:`457`: Re-enable Trove license identifier
34+
* :pr:`456`: Fix source dist file
35+
36+
37+
----
38+
39+
2140
Version 3.0.3
2241
=============
2342

MANIFEST.in

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,26 @@
1+
include *.md
12
include *.rst
23
include *.txt
3-
include tests/test_*.py
4+
include CONTRIBUTORS
5+
include CITATION.cff
6+
include Makefile
7+
include changelog.d/*
8+
graft docs/**
9+
include tests/*.py
10+
include tox.ini
11+
include .pytest.ini
12+
include .ruff.toml
13+
include uv.lock
14+
15+
# The dot files:
16+
include .coveragerc
17+
include .editorconfig
18+
include .gitignore
19+
include .readthedocs.yaml
20+
421

522
prune docs/_build
623
recursive-exclude .github *
24+
prune docs/**/__pycache__
725

826
global-exclude __pycache__

docs/usage/semver-version.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Getting the Version of semver
44
To know the version of semver itself, use the following construct::
55

66
>>> semver.__version__
7-
'3.0.3'
7+
'3.0.4'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ classifiers = [
3535
"Environment :: Web Environment",
3636
"Intended Audience :: Developers",
3737
"Development Status :: 5 - Production/Stable",
38-
# "License :: OSI Approved :: BSD License",
38+
"License :: OSI Approved :: BSD License",
3939
"Operating System :: OS Independent",
4040
"Programming Language :: Python :: 3",
4141
"Programming Language :: Python :: 3.7",

src/semver/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"""
1717

1818
#: Semver version
19-
__version__ = "3.0.3"
19+
__version__ = "3.0.4"
2020

2121
#: Original semver author
2222
__author__ = "Kostiantyn Rybnikov"

0 commit comments

Comments
 (0)
0