Skip to content

Commit

Permalink
2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Mar 14, 2021
1 parent c47f5c1 commit 62003f6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Changelog
=========

2.7.0 (2021-03-14)
------------------

Changes:

* Fix physical checks (such as W191) at end of file. PR #961.
* Add ``--indent-size`` option (defaulting to ``4``). PR #970.
* W605: fix escaped crlf false positive on windows. PR #976.


2.6.0 (2020-05-11)
------------------

Expand Down
2 changes: 1 addition & 1 deletion pycodestyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def lru_cache(maxsize=128): # noqa as it's a fake implementation.
except ImportError:
from ConfigParser import RawConfigParser

__version__ = '2.6.0'
__version__ = '2.7.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 62003f6

Please sign in to comment.