Skip to content
Snippets Groups Projects
Commit 9f725fb0 authored by Ian Cordasco's avatar Ian Cordasco Committed by GitHub
Browse files

Merge pull request #616 from sigmavirus24/release/2.3

Prepare 2.3.0 release
parents 5393c7d1 1d633b2c
No related branches found
No related tags found
No related merge requests found
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)
------------------
 
Loading
Loading
Loading
Loading
@@ -66,7 +66,7 @@ try:
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'
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment