diff --git a/sdv/__init__.py b/sdv/__init__.py index 95087202f..b130a3aa4 100644 --- a/sdv/__init__.py +++ b/sdv/__init__.py @@ -6,7 +6,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '1.4.0.dev2' +__version__ = '1.4.0' import sys diff --git a/setup.cfg b/setup.cfg index a010d0080..767a29c98 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.0.dev2 +current_version = 1.4.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 0322638f0..9f0ad95da 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.4.0.dev2', + version='1.4.0', zip_safe=False, )