From 76a44c9b24598df098630fdee860b5a02b075769 Mon Sep 17 00:00:00 2001 From: Carles Sala Date: Wed, 18 Sep 2019 13:25:26 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.2-dev=20=E2=86=92=200.1.2?= 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 39292e868..e590d5464 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.1.2-dev' +__version__ = '0.1.2' import logging diff --git a/setup.cfg b/setup.cfg index ba499281f..ff0d06180 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.2-dev +current_version = 0.1.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/setup.py b/setup.py index 5f58e98ba..7ca755209 100644 --- a/setup.py +++ b/setup.py @@ -94,6 +94,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/HDI-Project/sdv', - version='0.1.2-dev', + version='0.1.2', zip_safe=False, )