From 1687f855ea88972508079659607063e9aea77ce2 Mon Sep 17 00:00:00 2001 From: Carles Sala Date: Wed, 25 Nov 2020 22:15:52 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.0.dev1=20=E2=86=92=200.5.?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sdv/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sdv/__init__.py b/sdv/__init__.py index 864f05b51..74e3f496a 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.5.0.dev1' +__version__ = '0.5.0' 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 9ab63c1b6..0e2a0b86b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0.dev1 +current_version = 0.5.0 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 150037ca8..44f81ea5c 100644 --- a/setup.py +++ b/setup.py @@ -109,6 +109,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/SDV', - version='0.5.0.dev1', + version='0.5.0', zip_safe=False, )