From a094e9f1f7543758a058c8dbf3cb443854cfcf4d Mon Sep 17 00:00:00 2001 From: Carles Sala Date: Mon, 12 Aug 2019 13:11:23 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.2-dev=20=E2=86=92=200.3.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mlblocks/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mlblocks/__init__.py b/mlblocks/__init__.py index b528aefe..9df5b210 100644 --- a/mlblocks/__init__.py +++ b/mlblocks/__init__.py @@ -20,7 +20,7 @@ __copyright__ = 'Copyright (c) 2018, MIT Data To AI Lab' __email__ = 'dailabmit@gmail.com' __license__ = 'MIT' -__version__ = '0.3.2-dev' +__version__ = '0.3.2' __all__ = [ 'MLBlock', 'MLPipeline', 'add_pipelines_path', 'add_primitives_path', diff --git a/setup.cfg b/setup.cfg index 1967b27b..97bb08a0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.2-dev +current_version = 0.3.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/setup.py b/setup.py index 4c371761..3514f943 100644 --- a/setup.py +++ b/setup.py @@ -100,6 +100,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/HDI-Project/MLBlocks', - version='0.3.2-dev', + version='0.3.2', zip_safe=False, )