@@ -4,14 +4,33 @@ Changelog
4
4
2.1.0 (unreleased)
5
5
------------------
6
6
7
+ Announcements:
8
+
9
+ * Change all references to the pep8 project to say pycodestyle; #530
10
+
7
11
Changes:
8
12
9
- * Added check E74x for using variables named 'l', 'O', or 'I'; #341
10
- * Improved performance of `compound_statements` check; #314 / #522
11
- * Fixed remaining references to `pep8`; #518 / #530
12
- * Added `noqa` support for `maximum_line_length` check; #538
13
- * Added check E305 for two blank lines after toplevel methods and classes; #400
13
+ * Add Gitter badge; #557
14
+ * Report E302 for blank lines before an "async def"; #556
15
+ * Updated tox to do same tests as Travis CI (`setup.py test`).
16
+ * Updated to use sheilds.io badges.
17
+ * Updated text about running tests with tox; #552
18
+ * Update maximum_line_length to use Checker.noqa; 538
19
+ * Updated Travis CI doc link.
20
+ * Updated docs related to tested Python versions.
21
+ * Added skip missing interpreters flag to tox config.
22
+ * Add test-requirements.txt with basic test packages.
23
+ * Report E742 and E743 for badly named functions and classes.
24
+ * Also report E741 on 'global' and 'nonlocal' statements.
25
+ * Report E741 for prohibited single-letter variables.
26
+ * Added venv/ (virtualenv) to list of git ignored filename patterns.
27
+
28
+ Bugs:
14
29
30
+ * Stop checking for string option type; #561
31
+ * Require two blank lines after toplevel def, class; #536
32
+ * Badly named single-letter variable names are not detected; #341
33
+ * Fixing compound_statement not to be quadratic in # of :s; #314
15
34
16
35
2.0.0 (2016-05-31)
17
36
------------------
0 commit comments