Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.10.0 #1125

Merged
merged 1 commit into from Nov 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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