Skip to content

Commit

Permalink
Release 2.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Jun 15, 2024
1 parent 5246b9e commit 6f60985
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

2.12.0 (2024-06-15)
-------------------

Changes:

* E721: Fix false positive of the form `x.type(...) ==`. PR #1228.
* E502: Fix false-negative with a backslash escape in a comment. PR #1234.
* E204: New lint forbidding whitespace after decorator `@`. PR #1247.

2.11.1 (2023-10-12)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion pycodestyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
): # pragma: no cover (<py310)
tokenize._compile = lru_cache(tokenize._compile) # type: ignore

__version__ = '2.11.1'
__version__ = '2.12.0'

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

0 comments on commit 6f60985

Please sign in to comment.