From 80dc9c6b7982e0d3dbaead41cdf3fdb338a34a6e Mon Sep 17 00:00:00 2001 From: Carles Sala Date: Mon, 22 Jun 2020 13:22:30 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.1.dev3=20=E2=86=92=200.2.?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- autobazaar/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/autobazaar/__init__.py b/autobazaar/__init__.py index 1df9369..002b811 100644 --- a/autobazaar/__init__.py +++ b/autobazaar/__init__.py @@ -19,7 +19,7 @@ __copyright__ = 'Copyright (c) 2019, MIT Data To AI Lab' __email__ = 'dailabmit@gmail.com' __license__ = 'MIT' -__version__ = '0.2.1.dev3' +__version__ = '0.2.1' def _get_commit(): diff --git a/setup.cfg b/setup.cfg index e3924eb..843191c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1.dev3 +current_version = 0.2.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 99441cb..080e520 100644 --- a/setup.py +++ b/setup.py @@ -98,6 +98,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/HDI-project/AutoBazaar', - version='0.2.1.dev3', + version='0.2.1', zip_safe=False, )