Skip to content

Commit 57e39fa

Browse files
committed
Release 2.9.0
1 parent ab806f3 commit 57e39fa

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGES.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Changelog
22
=========
33

4+
2.9.0 (2022-07-30)
5+
------------------
6+
7+
Changes:
8+
9+
* E221, E222, E223, E224: add support for ``:=`` operator. PR #1032.
10+
* Drop python 2.7 / 3.5.
11+
* E262: consider non-breaking spaces (``\xa0``) as whitespace. PR #1035.
12+
* Improve performance of ``_is_binary_operator``. PR #1052.
13+
* E275: requires whitespace around keywords. PR #1063.
14+
* Add support for python 3.11. PR #1070.
15+
416
2.8.0 (2021-10-10)
517
------------------
618

pycodestyle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
): # pragma: no cover (<py310)
7373
tokenize._compile = lru_cache()(tokenize._compile) # type: ignore
7474

75-
__version__ = '2.8.0'
75+
__version__ = '2.9.0'
7676

7777
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
7878
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704,W503,W504'

0 commit comments

Comments
 (0)