diff --git a/copulas/__init__.py b/copulas/__init__.py index 4f8ed4a6..807cae35 100644 --- a/copulas/__init__.py +++ b/copulas/__init__.py @@ -4,7 +4,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '0.9.1.dev1' +__version__ = '0.9.1' import contextlib import importlib diff --git a/setup.cfg b/setup.cfg index cb1dda4b..184ba5cb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.1.dev1 +current_version = 0.9.1 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 787d515a..a6b0dec0 100644 --- a/setup.py +++ b/setup.py @@ -136,6 +136,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/Copulas', - version='0.9.1.dev1', + version='0.9.1', zip_safe=False, )