From 32b266d0aa02f7c1a8346ea2690a31c9306431f5 Mon Sep 17 00:00:00 2001 From: Carles Sala Date: Fri, 13 Nov 2020 19:08:51 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.2.dev4=20=E2=86=92=200.2.?= =?UTF-8?q?2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ctgan/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ctgan/__init__.py b/ctgan/__init__.py index 08dcf995..169fba7f 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.2.dev4' +__version__ = '0.2.2' from ctgan.demo import load_demo from ctgan.synthesizer import CTGANSynthesizer diff --git a/setup.cfg b/setup.cfg index 45bcc7b6..b051fb31 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.2.dev4 +current_version = 0.2.2 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 8b589775..990375f5 100644 --- a/setup.py +++ b/setup.py @@ -96,6 +96,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/CTGAN', - version='0.2.2.dev4', + version='0.2.2', zip_safe=False, )