Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6adf876

Browse filesBrowse files
authored
Merge pull request #459 from python-semver/fix-3.0.3
Fix 3.0.3
2 parents 486e489 + bae0b7c commit 6adf876
Copy full SHA for 6adf876

File tree

5 files changed

+41
-4
lines changed
Filter options

5 files changed

+41
-4
lines changed

‎CHANGELOG.rst

Copy file name to clipboardExpand all lines: CHANGELOG.rst
+19
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

Copy file name to clipboard
+19-1
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

Copy file name to clipboardExpand all lines: docs/usage/semver-version.rst
+1-1
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

Copy file name to clipboardExpand all lines: pyproject.toml
+1-1
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

Copy file name to clipboardExpand all lines: src/semver/__about__.py
+1-1
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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.