Skip to content

Commit c268060

Browse files
authored
Prepare version 3.0.1 (#413)
* Raise version * Ignore exit code from docformatter in checks `tox.ini` * Correct typo in release-procedure.md * Update CHANGELOG.rst
1 parent 90c3484 commit c268060

File tree

6 files changed

+23
-6
lines changed

6 files changed

+23
-6
lines changed

CHANGELOG.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
2138
Version 3.0.0
2239
=============
2340

changelog.d/410.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/usage/semver-version.rst

Lines changed: 1 addition & 1 deletion
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.0'
7+
'3.0.1'

release-procedure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

3131
1. Add eventually new contributor(s) to [CONTRIBUTORS](https://github.com/python-semver/python-semver/blob/master/CONTRIBUTORS).
3232

src/semver/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"""
1717

1818
#: Semver version
19-
__version__ = "3.0.0"
19+
__version__ = "3.0.1"
2020

2121
#: Original semver author
2222
__author__ = "Kostiantyn Rybnikov"

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ commands = mypy {posargs:--ignore-missing-imports --check-untyped-defs src}
5656
description = Check for PEP257 compatible docstrings
5757
basepython = python3
5858
deps = 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}
7071
commands =
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]

0 commit comments

Comments
 (0)