Skip to content

Commit 60e43bb

Browse files
authored
Prepare the 0.12.0 release (#172)
1 parent f289a72 commit 60e43bb

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG.rst

+10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Changes
22
=======
33

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+
414
0.11.1 - 2020-06-16
515
-------------------
616

src/pep8ext_naming.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
except ImportError:
1616
from flake8.util import ast, iter_child_nodes
1717

18-
__version__ = '0.11.1'
18+
__version__ = '0.12.0'
1919

2020
PYTHON_VERSION = sys.version_info[:3]
2121
PY2 = PYTHON_VERSION[0] == 2

0 commit comments

Comments
 (0)