From 60e43bb5032b3c2304f3a8410294cd0eea497d88 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Wed, 7 Jul 2021 04:11:04 -0700 Subject: [PATCH] Prepare the 0.12.0 release (#172) --- CHANGELOG.rst | 10 ++++++++++ src/pep8ext_naming.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4ab4a1a..2e8aeb3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,16 @@ Changes ======= +0.12.0 - 2021-07-06 +------------------- + +* flake8 3.9.1 or later is now required. + +* N818 checks exception class names for an "Error" suffix (disabled by default). + +* ``asyncSetUp`` and ``asyncTearDown`` are now exempted by default. + + 0.11.1 - 2020-06-16 ------------------- diff --git a/src/pep8ext_naming.py b/src/pep8ext_naming.py index fb2ebf8..b227495 100644 --- a/src/pep8ext_naming.py +++ b/src/pep8ext_naming.py @@ -15,7 +15,7 @@ except ImportError: from flake8.util import ast, iter_child_nodes -__version__ = '0.11.1' +__version__ = '0.12.0' PYTHON_VERSION = sys.version_info[:3] PY2 = PYTHON_VERSION[0] == 2