Skip to content

Commit 9f725fb

Browse files
authored
Merge pull request #616 from sigmavirus24/release/2.3
Prepare 2.3.0 release
2 parents 5393c7d + 1d633b2 commit 9f725fb

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGES.txt

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

4+
2.3.0 (2017-01-30)
5+
------------------
6+
7+
New Checks:
8+
9+
* Add E722 warning for bare ``except`` clauses
10+
* Report E704 for async function definitions (``async def``)
11+
12+
Bugs:
13+
14+
* Fix another E305 false positive for variables beginning with "class" or
15+
"def"
16+
* Fix detection of multiple spaces betwen ``async`` and ``def``
17+
* Fix handling of variable annotations. Stop reporting E701 on Python 3.6 for
18+
variable annotations.
19+
420
2.2.0 (2016-11-14)
521
------------------
622

pycodestyle.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
except ImportError:
6767
from ConfigParser import RawConfigParser
6868

69-
__version__ = '2.2.0'
69+
__version__ = '2.3.0'
7070

7171
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
7272
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704,W503'

0 commit comments

Comments
 (0)