Skip to content

Commit 5c2c354

Browse files
committed
Release 2.8.0
1 parent 6737a31 commit 5c2c354

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGES.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
Changelog
22
=========
33

4+
2.8.0 (2021-10-10)
5+
------------------
6+
7+
Changes:
8+
9+
* Drop python 3.4. PR #982.
10+
* E712: fix false negative with multiple comparisons. PR #987.
11+
* E211: fix false positives with ``match``. PR #989.
12+
* E772: improve performance of bare except check. PR #992.
13+
* Backport tokenize performance improvement from python 3.10. PR #993.
14+
* E225: fix for lambdas containing positional-only args. PR #1012.
15+
* Remove ``indent_size_str`` "setting". PR #995.
16+
* E402: allow ``__all__`` to be typed. PR #1019.
17+
* E225: fix false positives for ``*`` in ``case``. PR #1003.
18+
* E201: detect tabs as whitespace. PR #1015.
19+
20+
421
2.7.0 (2021-03-14)
522
------------------
623

pycodestyle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def lru_cache(maxsize=128): # noqa as it's a fake implementation.
8484
): # pragma: no cover (<py310)
8585
tokenize._compile = lru_cache()(tokenize._compile) # type: ignore
8686

87-
__version__ = '2.7.0'
87+
__version__ = '2.8.0'
8888

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

0 commit comments

Comments
 (0)