diff --git a/mlprimitives/__init__.py b/mlprimitives/__init__.py index a126a0e8..b1a05278 100644 --- a/mlprimitives/__init__.py +++ b/mlprimitives/__init__.py @@ -4,7 +4,7 @@ __author__ = 'MIT Data To AI Lab' __email__ = 'dailabmit@gmail.com' -__version__ = '0.2.5.dev1' +__version__ = '0.2.5' import os diff --git a/setup.cfg b/setup.cfg index afe68867..bb52f3dc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.5.dev1 +current_version = 0.2.5 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 e491b13a..5711be2b 100644 --- a/setup.py +++ b/setup.py @@ -125,6 +125,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/HDI-Project/MLPrimitives', - version='0.2.5.dev1', + version='0.2.5', zip_safe=False, )