summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2016-05-31 10:20:47 -0700
committerIan Lee <IanLee1521@gmail.com>2016-05-31 10:20:47 -0700
commit53da847c91b277491ef542ef53586e54cf7f4942 (patch)
tree05a08f6db3ae8387bbfb1561c05a4b45e1acea5a
parenta7362de1af81a2f1916f2d7e52f6af80e00c7aa1 (diff)
downloadpep8-53da847c91b277491ef542ef53586e54cf7f4942.tar.gz
Update next version plan to 2.0.0
In order to better high-light the name change, and backwards incompatibility. This also allows dependent tools (like flake8) to pin to `pycodestyle < 2.0` as a dependency while transitioning to the new package.
-rw-r--r--CHANGES.txt2
-rwxr-xr-xpycodestyle.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 5c04216..4058206 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -2,7 +2,7 @@ Changelog
=========
-1.8.0 (unreleased)
+2.0.0 (unreleased)
------------------
Announcements:
diff --git a/pycodestyle.py b/pycodestyle.py
index e3dc05f..de40b07 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -64,7 +64,7 @@ try:
except ImportError:
from ConfigParser import RawConfigParser
-__version__ = '1.8.0.dev0'
+__version__ = '2.0.0.dev0'
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704,W503'