From 63659c831a66072926dcee9aab3d89937643292f Mon Sep 17 00:00:00 2001 From: Andrew Montanez <andrew@sdv.dev> Date: Mon, 13 May 2024 10:38:12 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.1.dev1=20=E2=86=92=200.1?= =?UTF-8?q?0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ctgan/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ctgan/__init__.py b/ctgan/__init__.py index a69cca67..e9a79745 100644 --- a/ctgan/__init__.py +++ b/ctgan/__init__.py @@ -4,7 +4,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '0.10.1.dev1' +__version__ = '0.10.1' from ctgan.demo import load_demo from ctgan.synthesizers.ctgan import CTGAN diff --git a/pyproject.toml b/pyproject.toml index aec16f8a..4d5e127e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -151,7 +151,7 @@ add-ignore = ['D107', 'D407', 'D417'] collect_ignore = ['pyproject.toml'] [tool.bumpversion] -current_version = "0.10.1.dev1" +current_version = "0.10.1" parse = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?' serialize = [ '{major}.{minor}.{patch}.{release}{candidate}',