summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2021-01-07 17:28:44 -0800
committerAnthony Sottile <asottile@umich.edu>2021-03-14 09:38:45 -0700
commit62003f65573947f2620b97c0f8cb79c22ac68b25 (patch)
tree6e6300936412899a805fe82f7c24c861b336ff06
parentc47f5c1f977c20f16c19bc282834c70c9b40d800 (diff)
downloadpep8-62003f65573947f2620b97c0f8cb79c22ac68b25.tar.gz
2.7.0
-rw-r--r--CHANGES.txt10
-rwxr-xr-xpycodestyle.py2
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index bf90329..35523b5 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -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)
------------------
diff --git a/pycodestyle.py b/pycodestyle.py
index 2f4313f..f5d2f89 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -78,7 +78,7 @@ try:
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'