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.
18
18
19
19
.. towncrier release notes start
20
20
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
+
21
40
Version 3.0.3
22
41
=============
23
42
Original file line number Diff line number Diff line change
1
+ include *.md
1
2
include *.rst
2
3
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
+
4
21
5
22
prune docs/_build
6
23
recursive-exclude .github *
24
+ prune docs/**/__pycache__
7
25
8
26
global-exclude __pycache__
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ Getting the Version of semver
4
4
To know the version of semver itself, use the following construct::
5
5
6
6
>>> 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 = [
35
35
" Environment :: Web Environment" ,
36
36
" Intended Audience :: Developers" ,
37
37
" Development Status :: 5 - Production/Stable" ,
38
- # "License :: OSI Approved :: BSD License",
38
+ " License :: OSI Approved :: BSD License" ,
39
39
" Operating System :: OS Independent" ,
40
40
" Programming Language :: Python :: 3" ,
41
41
" Programming Language :: Python :: 3.7" ,
Original file line number Diff line number Diff line change 16
16
"""
17
17
18
18
#: Semver version
19
- __version__ = "3.0.3 "
19
+ __version__ = "3.0.4 "
20
20
21
21
#: Original semver author
22
22
__author__ = "Kostiantyn Rybnikov"
You can’t perform that action at this time.
0 commit comments