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.
18
18
19
19
.. towncrier release notes start
20
20
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
+
21
38
Version 3.0.0
22
39
=============
23
40
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
4
4
To know the version of semver itself, use the following construct::
5
5
6
6
>>> 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.
26
26
< https://semver.org > :
27
27
28
28
* ` src/semver/__about__.py `
29
- * ` docs/usage.rst `
29
+ * ` docs/usage/semver-version .rst `
30
30
31
31
1 . Add eventually new contributor(s) to [ CONTRIBUTORS] ( https://github.com/python-semver/python-semver/blob/master/CONTRIBUTORS ) .
32
32
Original file line number Diff line number Diff line change 16
16
"""
17
17
18
18
#: Semver version
19
- __version__ = "3.0.0 "
19
+ __version__ = "3.0.1 "
20
20
21
21
#: Original semver author
22
22
__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}
56
56
description = Check for PEP257 compatible docstrings
57
57
basepython = python3
58
58
deps = docformatter
59
- commands = docformatter --check --diff {posargs:src}
59
+ commands =
60
+ docformatter --check --diff {posargs:src}
60
61
61
62
62
63
[testenv:checks]
@@ -68,10 +69,10 @@ deps =
68
69
{[testenv:mypy]deps}
69
70
{[testenv:docstrings]deps}
70
71
commands =
72
+ - {[testenv:docstrings]commands}
71
73
{[testenv:black]commands}
72
74
{[testenv:flake8]commands}
73
75
{[testenv:mypy]commands}
74
- {[testenv:docstrings]commands}
75
76
76
77
77
78
[testenv:docs]
You can’t perform that action at this time.
0 commit comments