From 96d194f5904c1c3efd11deb290b0041e0aab7e44 Mon Sep 17 00:00:00 2001 From: Carles Sala Date: Wed, 29 May 2019 11:27:15 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.0-dev=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- atm/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/atm/__init__.py b/atm/__init__.py index ce34319..715264a 100644 --- a/atm/__init__.py +++ b/atm/__init__.py @@ -10,7 +10,7 @@ __author__ = """MIT Data To AI Lab""" __email__ = 'dailabmit@gmail.com' -__version__ = '0.2.0-dev' +__version__ = '0.2.0' # this defines which modules will be imported by "from atm import *" __all__ = ['ATM', 'Model', 'config', 'constants', 'data', 'database', diff --git a/setup.cfg b/setup.cfg index 4fd4200..e367dc8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0-dev +current_version = 0.2.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/setup.py b/setup.py index e8a1949..df5b277 100644 --- a/setup.py +++ b/setup.py @@ -113,6 +113,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/HDI-project/ATM', - version='0.2.0-dev', + version='0.2.0', zip_safe=False, )