Skip to content

Commit

Permalink
Merge pull request #1125 from PyCQA/2_10_0
Browse files Browse the repository at this point in the history
Release 2.10.0
  • Loading branch information
asottile committed Nov 23, 2022
2 parents b388782 + 806bf5c commit 1063db8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion CHANGES.txt
@@ -1,12 +1,22 @@
Changelog
=========

2.10.0 (2022-11-23)
-------------------

Changes:

* E231: allow trailing comma inside 1-tuples in `[]`. PR #1108.
* W601, W602, W603, W604: removed (no longer relevant in python 3). PR #1111.
* E741: also apply to lambdas. PR #1106.
* E741: fix false positive for comparison operators. PR #1118.

2.9.1 (2022-08-03)
------------------

Changes:

* E275: fix false positive for yield expressions.
* E275: fix false positive for yield expressions. PR #1091.

2.9.0 (2022-07-30)
------------------
Expand Down
2 changes: 1 addition & 1 deletion pycodestyle.py
Expand Up @@ -68,7 +68,7 @@
): # pragma: no cover (<py310)
tokenize._compile = lru_cache()(tokenize._compile) # type: ignore

__version__ = '2.9.1'
__version__ = '2.10.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 1063db8

Please sign in to comment.