Skip to content

Commit

Permalink
Prepare the 0.13.0 release (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
jparise authored Jun 2, 2022
1 parent e350507 commit 01bb344
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changes
=======

0.13.0 - 2022-06-22
-------------------

* Python 3.7 or later is now required.

* ``setUpModule`` and ``tearDownModule`` are now exempted by default.

0.12.1 - 2021-08-06
-------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ When both ``flake8`` and ``pep8-naming`` are installed, the plugin is
available in ``flake8``::

$ flake8 --version
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
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

By default the plugin is enabled.

Expand Down
2 changes: 1 addition & 1 deletion src/pep8ext_naming.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
except ImportError:
from flake8.util import ast, iter_child_nodes

__version__ = '0.12.1'
__version__ = '0.13.0'

PYTHON_VERSION = sys.version_info[:3]

Expand Down

0 comments on commit 01bb344

Please sign in to comment.