From d7b77350d0e1b665248a5eef4d3daab7ecd6202b Mon Sep 17 00:00:00 2001 From: Manu Phatak Date: Fri, 1 Jan 2016 15:47:53 -0600 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.2.0=20=E2=86=92=202.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- json_config/__init__.py | 2 +- setup.cfg | 3 ++- setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/json_config/__init__.py b/json_config/__init__.py index 37c650d..2eb05d6 100644 --- a/json_config/__init__.py +++ b/json_config/__init__.py @@ -22,7 +22,7 @@ __author__ = 'Manu Phatak' __email__ = 'bionikspoon@gmail.com' -__version__ = '1.2.0' +__version__ = '2.0.0' import logging from ._compat import NullHandler diff --git a/setup.cfg b/setup.cfg index b539cb7..0c2c75f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.0 +current_version = 2.0.0 commit = True tag = False tag_name = {new_version} @@ -10,3 +10,4 @@ tag_name = {new_version} [wheel] universal = 1 + diff --git a/setup.py b/setup.py index 6fb3aee..aa33610 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def run_tests(self): setup( # :off name='json_config', - version='1.2.0', + version='2.0.0', description='A convenience utility for working with JSON config files.', long_description='\n\n'.join([readme, history]), author='Manu Phatak',