From c98f4920c75810fde0e806d9b0fe9af897d754ac Mon Sep 17 00:00:00 2001 From: Carles Sala Date: Mon, 24 Jun 2019 09:31:16 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.1-dev=20=E2=86=92=200.2.1?= 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 bede4d4..f9f5a4b 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.1-dev' +__version__ = '0.2.1' # 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 0d921ac..7c62a31 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1-dev +current_version = 0.2.1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/setup.py b/setup.py index d71f011..e4745e7 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.1-dev', + version='0.2.1', zip_safe=False, )