diff --git a/copulas/__init__.py b/copulas/__init__.py index eebb92dc..c227757a 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.dev0' +__version__ = '0.3.0.dev1' import contextlib import importlib diff --git a/setup.cfg b/setup.cfg index 0ae329ba..db57da9e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0.dev0 +current_version = 0.3.0.dev1 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 d148b326..ca001225 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.dev0', + version='0.3.0.dev1', zip_safe=False, )