diff --git a/copulas/__init__.py b/copulas/__init__.py index c227757a..508be84a 100644 --- a/copulas/__init__.py +++ b/copulas/__init__.py @@ -4,7 +4,7 @@ __author__ = 'MIT Data To AI Lab' __email__ = 'dailabmit@gmail.com', -__version__ = '0.3.0.dev1' +__version__ = '0.3.0' import contextlib import importlib diff --git a/setup.cfg b/setup.cfg index db57da9e..7893e415 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0.dev1 +current_version = 0.3.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 ca001225..2b35fe2e 100644 --- a/setup.py +++ b/setup.py @@ -108,6 +108,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/Copulas', - version='0.3.0.dev1', + version='0.3.0', zip_safe=False, )