summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2020-05-11 12:14:47 -0700
committerGitHub <noreply@github.com>2020-05-11 12:14:47 -0700
commit7dad684d96478d21d4f5b392be558e8dd324c1c9 (patch)
tree941a87912a41fc383ca7d8c69c219c38b85fb082
parent1aa4c0a337d946388eab0c7f24eeb56908bf7252 (diff)
parent82b04165eb53f8e3320b492ddfd2b0c3ee5f70e1 (diff)
downloadpep8-7dad684d96478d21d4f5b392be558e8dd324c1c9.tar.gz
Merge pull request #933 from asottile/2_6_0
2.6.0
-rw-r--r--CHANGES.txt12
-rwxr-xr-xpycodestyle.py2
2 files changed, 12 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index aa2d181..86bf47b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,7 +1,17 @@
Changelog
=========
-2.6.0a1 (2020-04-02)
+2.6.0 (2020-05-08)
+------------------
+
+Changes:
+
+* E306: fix detection inside ``async def``. PR #929.
+* E301: fix regression disallowing decorated one-liners. PR #927.
+* E714: fix false positive with chained ``is not``. PR #931.
+
+
+2.6.0a1 (2020-04-23)
--------------------
New checks:
diff --git a/pycodestyle.py b/pycodestyle.py
index 651edfb..deb4539 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -78,7 +78,7 @@ try:
except ImportError:
from ConfigParser import RawConfigParser
-__version__ = '2.6.0a1'
+__version__ = '2.6.0'
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704,W503,W504'