From 770619bf0080287468178500b2e7f2fa1c45c162 Mon Sep 17 00:00:00 2001 From: Katharine Xiao <2405771+katxiao@users.noreply.github.com> Date: Fri, 25 Feb 2022 15:43:15 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.1.dev4=20=E2=86=92=200.5.?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- conda/meta.yaml | 2 +- ctgan/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index 9ca7b815..4e441233 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,5 @@ {% set name = 'ctgan' %} -{% set version = '0.5.1.dev4' %} +{% set version = '0.5.1' %} package: name: "{{ name|lower }}" diff --git a/ctgan/__init__.py b/ctgan/__init__.py index 2160ac43..7503c5ab 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.5.1.dev4' +__version__ = '0.5.1' from ctgan.demo import load_demo from ctgan.synthesizers.ctgan import CTGANSynthesizer diff --git a/setup.cfg b/setup.cfg index 8629efa1..b73be8b6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.1.dev4 +current_version = 0.5.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 d5faa0a0..308e6e4d 100644 --- a/setup.py +++ b/setup.py @@ -114,6 +114,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/CTGAN', - version='0.5.1.dev4', + version='0.5.1', zip_safe=False, )