diff --git a/copulas/__init__.py b/copulas/__init__.py index dced67e8..ea9a7590 100644 --- a/copulas/__init__.py +++ b/copulas/__init__.py @@ -4,7 +4,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '0.8.0.dev1' +__version__ = '0.8.0' import contextlib import importlib diff --git a/setup.cfg b/setup.cfg index 898bcd19..ce262bcd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.0.dev1 +current_version = 0.8.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 c864aac3..08ccc3cc 100644 --- a/setup.py +++ b/setup.py @@ -137,6 +137,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/Copulas', - version='0.8.0.dev1', + version='0.8.0', zip_safe=False, )