Skip to content

Commit 82b0416

Browse files
committed
2.6.0
1 parent 1aa4c0a commit 82b0416

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGES.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
Changelog
22
=========
33

4-
2.6.0a1 (2020-04-02)
4+
2.6.0 (2020-05-08)
5+
------------------
6+
7+
Changes:
8+
9+
* E306: fix detection inside ``async def``. PR #929.
10+
* E301: fix regression disallowing decorated one-liners. PR #927.
11+
* E714: fix false positive with chained ``is not``. PR #931.
12+
13+
14+
2.6.0a1 (2020-04-23)
515
--------------------
616

717
New checks:

pycodestyle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def lru_cache(maxsize=128): # noqa as it's a fake implementation.
7878
except ImportError:
7979
from ConfigParser import RawConfigParser
8080

81-
__version__ = '2.6.0a1'
81+
__version__ = '2.6.0'
8282

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

0 commit comments

Comments
 (0)