summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Stapleton Cordasco <graffatcolmingov@gmail.com>2017-10-22 09:20:19 -0500
committerIan Stapleton Cordasco <graffatcolmingov@gmail.com>2017-10-22 09:20:19 -0500
commit45f79c710a1a433cc5ab0b2e1a5972b778c44c31 (patch)
treeedf7c48bdd5f5e0b1cb5d3c86f11110073c49a89
parent0b5a43207ff5b366b58caf7c845576c483f4787e (diff)
downloadpep8-release/1.7.x.tar.gz
Release 1.7.11.7.1release/1.7.x
-rw-r--r--CHANGES.txt7
-rwxr-xr-xpep8.py2
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 860b6ad..d35d569 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,13 @@
Changelog
=========
+1.7.1 (2017-10-22)
+------------------
+
+Changes:
+
+* Prominently note via warning message that the tool is no longer released as
+ ``pep8`` and will only be fixed in the ``pycodestyle`` package
1.7.0 (2016-01-12)
------------------
diff --git a/pep8.py b/pep8.py
index 5220346..86c1d01 100755
--- a/pep8.py
+++ b/pep8.py
@@ -63,7 +63,7 @@ try:
except ImportError:
from ConfigParser import RawConfigParser
-__version__ = '1.7.1.dev0'
+__version__ = '1.7.1'
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704'