From 8c4ba9a30f99f19b6ba4ad6030f51bbd371f4d14 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Wed, 25 May 2022 11:26:06 -0700 Subject: [PATCH] Prepare the 0.13.0 release --- CHANGELOG.rst | 7 +++++++ README.rst | 2 +- src/pep8ext_naming.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 523a4ad..f8817bd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 ------------------- diff --git a/README.rst b/README.rst index f6fcc16..42e355d 100644 --- a/README.rst +++ b/README.rst @@ -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. diff --git a/src/pep8ext_naming.py b/src/pep8ext_naming.py index 2755aaa..319d5c4 100644 --- a/src/pep8ext_naming.py +++ b/src/pep8ext_naming.py @@ -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]