diff --git a/ctgan/__init__.py b/ctgan/__init__.py index 51c85da6..d0796e74 100644 --- a/ctgan/__init__.py +++ b/ctgan/__init__.py @@ -4,7 +4,7 @@ __author__ = 'MIT Data To AI Lab' __email__ = 'dailabmit@gmail.com' -__version__ = '0.2.1.dev1' +__version__ = '0.2.1' from ctgan.demo import load_demo from ctgan.synthesizer import CTGANSynthesizer diff --git a/setup.cfg b/setup.cfg index 8d0ff0f6..db4cedea 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1.dev1 +current_version = 0.2.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 1fbebe52..01937309 100644 --- a/setup.py +++ b/setup.py @@ -94,6 +94,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/CTGAN', - version='0.2.1.dev1', + version='0.2.1', zip_safe=False, )