From cdbd2ae580b975b8a6a0281ca655d92f66883d9b Mon Sep 17 00:00:00 2001 From: Katharine Xiao <2405771+katxiao@users.noreply.github.com> Date: Tue, 3 May 2022 12:19:54 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.14.1.dev1=20=E2=86=92=200.1?= =?UTF-8?q?4.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- conda/meta.yaml | 2 +- sdv/__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 01adf4ddc..2c9820ec9 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,5 @@ {% set name = 'sdv' %} -{% set version = '0.14.1.dev1' %} +{% set version = '0.14.1' %} package: name: "{{ name|lower }}" diff --git a/sdv/__init__.py b/sdv/__init__.py index 7a43950eb..1c3e086c1 100644 --- a/sdv/__init__.py +++ b/sdv/__init__.py @@ -6,7 +6,7 @@ __author__ = """MIT Data To AI Lab""" __email__ = 'dailabmit@gmail.com' -__version__ = '0.14.1.dev1' +__version__ = '0.14.1' from sdv import constraints, evaluation, metadata, relational, tabular from sdv.demo import get_available_demos, load_demo diff --git a/setup.cfg b/setup.cfg index 16a24ff48..a5e9b90ea 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.14.1.dev1 +current_version = 0.14.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 2eaf375c2..52241e699 100644 --- a/setup.py +++ b/setup.py @@ -113,6 +113,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/SDV', - version='0.14.1.dev1', + version='0.14.1', zip_safe=False, )