Skip to content

Commit

Permalink
Merge pull request #933 from asottile/2_6_0
Browse files Browse the repository at this point in the history
2.6.0
  • Loading branch information
IanLee1521 committed May 11, 2020
2 parents 1aa4c0a + 82b0416 commit 7dad684
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pycodestyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def lru_cache(maxsize=128): # noqa as it's a fake implementation.
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'
Expand Down

0 comments on commit 7dad684

Please sign in to comment.