File tree Expand file tree Collapse file tree 6 files changed +23
-6
lines changed
Expand file tree Collapse file tree 6 files changed +23
-6
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,23 @@ This section covers the changes between major version 2 and version 3.
1818
1919.. towncrier release notes start
2020
21+ Version 3.0.1
22+ =============
23+
24+ :Released: 2023-06-14
25+ :Maintainer: Tom Schraitle
26+
27+
28+ Bug Fixes
29+ ---------
30+
31+ * :gh: `410 `: Export functions properly using ``__all__ `` in ``__init__.py ``.
32+
33+
34+
35+ ----
36+
37+
2138Version 3.0.0
2239=============
2340
Load Diff This file was deleted.
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.0 '
7+ '3.0.1 '
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ create a new release.
2626 < https://semver.org > :
2727
2828 * ` src/semver/__about__.py `
29- * ` docs/usage.rst `
29+ * ` docs/usage/semver-version .rst `
3030
31311 . Add eventually new contributor(s) to [ CONTRIBUTORS] ( https://github.com/python-semver/python-semver/blob/master/CONTRIBUTORS ) .
3232
Original file line number Diff line number Diff line change 1616"""
1717
1818#: Semver version
19- __version__ = "3.0.0 "
19+ __version__ = "3.0.1 "
2020
2121#: Original semver author
2222__author__ = "Kostiantyn Rybnikov"
Original file line number Diff line number Diff line change @@ -56,7 +56,8 @@ commands = mypy {posargs:--ignore-missing-imports --check-untyped-defs src}
5656description = Check for PEP257 compatible docstrings
5757basepython = python3
5858deps = docformatter
59- commands = docformatter --check --diff {posargs:src}
59+ commands =
60+ docformatter --check --diff {posargs:src}
6061
6162
6263[testenv:checks]
@@ -68,10 +69,10 @@ deps =
6869 {[testenv:mypy]deps}
6970 {[testenv:docstrings]deps}
7071commands =
72+ - {[testenv:docstrings]commands}
7173 {[testenv:black]commands}
7274 {[testenv:flake8]commands}
7375 {[testenv:mypy]commands}
74- {[testenv:docstrings]commands}
7576
7677
7778[testenv:docs]
You can’t perform that action at this time.
0 commit comments