summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Cordasco <sigmavirus24@users.noreply.github.com>2017-01-28 07:26:31 -0600
committerGitHub <noreply@github.com>2017-01-28 07:26:31 -0600
commit9f725fb0fad8919a9467834309fbd9f604280035 (patch)
treebdb92b72d46f3b6a35f0a3b587e575450f7dd279
parent5393c7d133949ef563999f0df1ac0a3af760e0fe (diff)
parent1d633b2c2d5056ddcd0c811352dc46208739054b (diff)
downloadpep8-9f725fb0fad8919a9467834309fbd9f604280035.tar.gz
Merge pull request #616 from sigmavirus24/release/2.32.3.0
Prepare 2.3.0 release
-rw-r--r--CHANGES.txt16
-rwxr-xr-xpycodestyle.py2
2 files changed, 17 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 9c43531..572caec 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -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)
------------------
diff --git a/pycodestyle.py b/pycodestyle.py
index 96d2da3..2e4ebed 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -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'