Skip to content

Commit 01bb344

Browse files
authored
Prepare the 0.13.0 release (#200)
1 parent e350507 commit 01bb344

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changes
22
=======
33

4+
0.13.0 - 2022-06-22
5+
-------------------
6+
7+
* Python 3.7 or later is now required.
8+
9+
* ``setUpModule`` and ``tearDownModule`` are now exempted by default.
10+
411
0.12.1 - 2021-08-06
512
-------------------
613

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ When both ``flake8`` and ``pep8-naming`` are installed, the plugin is
2626
available in ``flake8``::
2727

2828
$ flake8 --version
29-
4.0.1 (mccabe: 0.6.1, naming: 0.12.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.8.10 on Linux
29+
4.0.1 (mccabe: 0.6.1, naming: 0.13.0, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.8.10 on Linux
3030

3131
By default the plugin is enabled.
3232

src/pep8ext_naming.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
except ImportError:
1414
from flake8.util import ast, iter_child_nodes
1515

16-
__version__ = '0.12.1'
16+
__version__ = '0.13.0'
1717

1818
PYTHON_VERSION = sys.version_info[:3]
1919

0 commit comments

Comments
 (0)