Skip to content

Commit 6f60985

Browse files
committed
Release 2.12.0
1 parent 5246b9e commit 6f60985

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGES.txt

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
=========
33

4+
2.12.0 (2024-06-15)
5+
-------------------
6+
7+
Changes:
8+
9+
* E721: Fix false positive of the form `x.type(...) ==`. PR #1228.
10+
* E502: Fix false-negative with a backslash escape in a comment. PR #1234.
11+
* E204: New lint forbidding whitespace after decorator `@`. PR #1247.
12+
413
2.11.1 (2023-10-12)
514
-------------------
615

pycodestyle.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
): # pragma: no cover (<py310)
6969
tokenize._compile = lru_cache(tokenize._compile) # type: ignore
7070

71-
__version__ = '2.11.1'
71+
__version__ = '2.12.0'
7272

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

0 commit comments

Comments
 (0)