summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2022-11-23 13:15:34 -0500
committerAnthony Sottile <asottile@umich.edu>2022-11-23 13:15:34 -0500
commit806bf5c7b556017fbc759f7576d2fb19aae8c464 (patch)
tree906425163b5071e72f3450c805a32fdcb33bc595
parentb38878283c6e4898df7bf438fb4dc03cd204ca14 (diff)
downloadpep8-806bf5c7b556017fbc759f7576d2fb19aae8c464.tar.gz
Release 2.10.0
-rw-r--r--CHANGES.txt12
-rwxr-xr-xpycodestyle.py2
2 files changed, 12 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index f7fddf7..9570eec 100644
--- a/CHANGES.txt
+++ b/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)
------------------
diff --git a/pycodestyle.py b/pycodestyle.py
index f06f923..f5e05cf 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -68,7 +68,7 @@ if (
): # 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'