diff --git a/rdt/__init__.py b/rdt/__init__.py index 109bc906a..817920e27 100644 --- a/rdt/__init__.py +++ b/rdt/__init__.py @@ -5,7 +5,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '1.7.0' +__version__ = '1.7.1.dev0' import sys diff --git a/setup.cfg b/setup.cfg index 8c6330b2e..8f39e9d9b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.0 +current_version = 1.7.1.dev0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index e43c4955d..7a7d2c6a0 100644 --- a/setup.py +++ b/setup.py @@ -139,6 +139,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/RDT', - version='1.7.0', + version='1.7.1.dev0', zip_safe=False, )