summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2016-11-14 10:41:42 -0800
committerIan Lee <IanLee1521@gmail.com>2016-11-14 10:41:42 -0800
commit8053c7c1d5597b062c58c5991231b62e11b435e9 (patch)
tree221f4f42fb1a8ccbc2cf2b2ac2e011a03be02c3d
parent659ef94726c5c18385e7f35a5dce792f91d3601b (diff)
downloadpep8-8053c7c1d5597b062c58c5991231b62e11b435e9.tar.gz
Tagged release of 2.2.02.2.0
Signed-off-by: Ian Lee <IanLee1521@gmail.com>
-rw-r--r--CHANGES.txt11
-rwxr-xr-xpycodestyle.py2
2 files changed, 12 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index b48d482..aeb5d63 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,17 @@
Changelog
=========
+2.2.0 (2016-11-14)
+------------------
+
+Announcements:
+
+* Added Make target to obtain proper tarball file permissions; #599
+
+Bugs:
+
+* Fixed E305 regression caused by #400; #593
+
2.1.0 (2016-11-04)
------------------
diff --git a/pycodestyle.py b/pycodestyle.py
index 3d1125e..e308177 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -66,7 +66,7 @@ try:
except ImportError:
from ConfigParser import RawConfigParser
-__version__ = '2.2.0.dev0'
+__version__ = '2.2.0'
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704,W503'