Skip to content

Commit 806bf5c

Browse files
committed
Release 2.10.0
1 parent b388782 commit 806bf5c

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,12 +1,22 @@
11
Changelog
22
=========
33

4+
2.10.0 (2022-11-23)
5+
-------------------
6+
7+
Changes:
8+
9+
* E231: allow trailing comma inside 1-tuples in `[]`. PR #1108.
10+
* W601, W602, W603, W604: removed (no longer relevant in python 3). PR #1111.
11+
* E741: also apply to lambdas. PR #1106.
12+
* E741: fix false positive for comparison operators. PR #1118.
13+
414
2.9.1 (2022-08-03)
515
------------------
616

717
Changes:
818

9-
* E275: fix false positive for yield expressions.
19+
* E275: fix false positive for yield expressions. PR #1091.
1020

1121
2.9.0 (2022-07-30)
1222
------------------

pycodestyle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
): # pragma: no cover (<py310)
6969
tokenize._compile = lru_cache()(tokenize._compile) # type: ignore
7070

71-
__version__ = '2.9.1'
71+
__version__ = '2.10.0'
7272

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

0 commit comments

Comments
 (0)