Skip to content

Commit

Permalink
Merge pull request #616 from sigmavirus24/release/2.3
Browse files Browse the repository at this point in the history
Prepare 2.3.0 release
  • Loading branch information
sigmavirus24 authored Jan 28, 2017
2 parents 5393c7d + 1d633b2 commit 9f725fb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Changelog
=========

2.3.0 (2017-01-30)
------------------

New Checks:

* Add E722 warning for bare ``except`` clauses
* Report E704 for async function definitions (``async def``)

Bugs:

* Fix another E305 false positive for variables beginning with "class" or
"def"
* Fix detection of multiple spaces betwen ``async`` and ``def``
* Fix handling of variable annotations. Stop reporting E701 on Python 3.6 for
variable annotations.

2.2.0 (2016-11-14)
------------------

Expand Down
2 changes: 1 addition & 1 deletion pycodestyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
except ImportError:
from ConfigParser import RawConfigParser

__version__ = '2.2.0'
__version__ = '2.3.0'

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

0 comments on commit 9f725fb

Please sign in to comment.