summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2022-07-30 15:31:47 -0400
committerGitHub <noreply@github.com>2022-07-30 15:31:47 -0400
commit44b3d2895b39b1eff8cb5048ae3464a033b4ede8 (patch)
tree3f8f479a6bab01659a7102bfd95d457e076f30ec
parentab806f3f9133ca24366b6254e499f0363f6bf5ec (diff)
parent57e39fa4f66707c305ead679e62d7ce1b7af9362 (diff)
downloadpep8-2.9.0.tar.gz
Merge pull request #1087 from PyCQA/2_9_02.9.0
Release 2.9.0
-rw-r--r--CHANGES.txt12
-rwxr-xr-xpycodestyle.py2
2 files changed, 13 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 49db29b..f24ee34 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,18 @@
Changelog
=========
+2.9.0 (2022-07-30)
+------------------
+
+Changes:
+
+* E221, E222, E223, E224: add support for ``:=`` operator. PR #1032.
+* Drop python 2.7 / 3.5.
+* E262: consider non-breaking spaces (``\xa0``) as whitespace. PR #1035.
+* Improve performance of ``_is_binary_operator``. PR #1052.
+* E275: requires whitespace around keywords. PR #1063.
+* Add support for python 3.11. PR #1070.
+
2.8.0 (2021-10-10)
------------------
diff --git a/pycodestyle.py b/pycodestyle.py
index ee0a58f..5c4d5f9 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -72,7 +72,7 @@ if (
): # pragma: no cover (<py310)
tokenize._compile = lru_cache()(tokenize._compile) # type: ignore
-__version__ = '2.8.0'
+__version__ = '2.9.0'
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704,W503,W504'