Skip to content

Commit 930e2ca

Browse files
authored
Merge pull request #978 from asottile/2_7_0
2.7.0
2 parents c47f5c1 + 62003f6 commit 930e2ca

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGES.txt

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

4+
2.7.0 (2021-03-14)
5+
------------------
6+
7+
Changes:
8+
9+
* Fix physical checks (such as W191) at end of file. PR #961.
10+
* Add ``--indent-size`` option (defaulting to ``4``). PR #970.
11+
* W605: fix escaped crlf false positive on windows. PR #976.
12+
13+
414
2.6.0 (2020-05-11)
515
------------------
616

pycodestyle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def lru_cache(maxsize=128): # noqa as it's a fake implementation.
7878
except ImportError:
7979
from ConfigParser import RawConfigParser
8080

81-
__version__ = '2.6.0'
81+
__version__ = '2.7.0'
8282

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

0 commit comments

Comments
 (0)