We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f289a72 commit 60e43bbCopy full SHA for 60e43bb
CHANGELOG.rst
@@ -1,6 +1,16 @@
1
Changes
2
=======
3
4
+0.12.0 - 2021-07-06
5
+-------------------
6
+
7
+* flake8 3.9.1 or later is now required.
8
9
+* N818 checks exception class names for an "Error" suffix (disabled by default).
10
11
+* ``asyncSetUp`` and ``asyncTearDown`` are now exempted by default.
12
13
14
0.11.1 - 2020-06-16
15
-------------------
16
src/pep8ext_naming.py
@@ -15,7 +15,7 @@
except ImportError:
from flake8.util import ast, iter_child_nodes
17
18
-__version__ = '0.11.1'
+__version__ = '0.12.0'
19
20
PYTHON_VERSION = sys.version_info[:3]
21
PY2 = PYTHON_VERSION[0] == 2
0 commit comments