diff --git a/sdv/__init__.py b/sdv/__init__.py index f2133e4bf..55f16cfc7 100644 --- a/sdv/__init__.py +++ b/sdv/__init__.py @@ -6,7 +6,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '1.5.0.dev1' +__version__ = '1.5.0' import sys diff --git a/setup.cfg b/setup.cfg index d7879a769..bc39d4b1f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.0.dev1 +current_version = 1.5.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 52768c572..3c23254dd 100644 --- a/setup.py +++ b/setup.py @@ -137,6 +137,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/SDV', - version='1.5.0.dev1', + version='1.5.0', zip_safe=False, )