diff --git a/sdv/__init__.py b/sdv/__init__.py index 912e75429..64bb96d4e 100644 --- a/sdv/__init__.py +++ b/sdv/__init__.py @@ -6,7 +6,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '1.6.0.dev2' +__version__ = '1.6.0' import sys diff --git a/setup.cfg b/setup.cfg index 50a2aee52..70e37ae07 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.0.dev2 +current_version = 1.6.0 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 eca5f9492..125b6f68c 100644 --- a/setup.py +++ b/setup.py @@ -136,6 +136,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/SDV', - version='1.6.0.dev2', + version='1.6.0', zip_safe=False, )