File tree Expand file tree Collapse file tree 5 files changed +41
-4
lines changed
Expand file tree Collapse file tree 5 files changed +41
-4
lines changed Original file line number Diff line number Diff 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+
2140Version 3.0.3
2241=============
2342
Original file line number Diff line number Diff line change 1+ include *.md
12include *.rst
23include *.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
522prune docs/_build
623recursive-exclude .github *
24+ prune docs/**/__pycache__
725
826global-exclude __pycache__
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ Getting the Version of semver
44To know the version of semver itself, use the following construct::
55
66 >>> semver.__version__
7- '3.0.3 '
7+ '3.0.4 '
Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff line change 1616"""
1717
1818#: Semver version
19- __version__ = "3.0.3 "
19+ __version__ = "3.0.4 "
2020
2121#: Original semver author
2222__author__ = "Kostiantyn Rybnikov"
You can’t perform that action at this time.
0 commit comments