From 16ba53c557a770760bb46fbf17566891a258cdb3 Mon Sep 17 00:00:00 2001 From: sarahmish Date: Fri, 8 Oct 2021 12:07:26 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.1.dev2=20=E2=86=92=200.4.?= =?UTF-8?q?1?= 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 f3ead991..9c9d5d13 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.4.1.dev2' +__version__ = '0.4.1' __all__ = [ 'MLBlock', diff --git a/setup.cfg b/setup.cfg index b106c1e6..84f59fab 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.1.dev2 +current_version = 0.4.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 6a193b32..b7c717be 100644 --- a/setup.py +++ b/setup.py @@ -114,6 +114,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/MLBazaar/MLBlocks', - version='0.4.1.dev2', + version='0.4.1', zip_safe=False, )