diff --git a/conda/meta.yaml b/conda/meta.yaml index 6bb7643e..764c204f 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,5 @@ {% set name = 'ctgan' %} -{% set version = '0.4.1.dev2' %} +{% set version = '0.4.1' %} package: name: "{{ name|lower }}" diff --git a/ctgan/__init__.py b/ctgan/__init__.py index a7669f0a..2c504a64 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.4.1.dev2' +__version__ = '0.4.1' from ctgan.demo import load_demo from ctgan.synthesizers.ctgan import CTGANSynthesizer diff --git a/setup.cfg b/setup.cfg index f33623f5..177a23f8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.1.dev2 +current_version = 0.4.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 8b74de5e..0828d99a 100644 --- a/setup.py +++ b/setup.py @@ -99,6 +99,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/CTGAN', - version='0.4.1.dev2', + version='0.4.1', zip_safe=False, )