diff options
-rw-r--r-- | CHANGES.txt | 12 | ||||
-rwxr-xr-x | pycodestyle.py | 2 |
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' |