diff --git a/atm/__init__.py b/atm/__init__.py index 1e5023a..7c62367 100644 --- a/atm/__init__.py +++ b/atm/__init__.py @@ -12,7 +12,7 @@ __author__ = """MIT Data To AI Lab""" __email__ = 'dailabmit@gmail.com' -__version__ = '0.1.2-dev' +__version__ = '0.1.2' # this defines which modules will be imported by "from atm import *" __all__ = ['config', 'classifier', 'constants', 'database', 'enter_data', diff --git a/setup.cfg b/setup.cfg index f47bc4c..98f949c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,15 +1,15 @@ [bumpversion] -current_version = 0.1.2-dev +current_version = 0.1.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? -serialize = +serialize = {major}.{minor}.{patch}-{release} {major}.{minor}.{patch} [bumpversion:part:release] optional_value = release -values = +values = dev release diff --git a/setup.py b/setup.py index 0ae2840..3967373 100644 --- a/setup.py +++ b/setup.py @@ -110,6 +110,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/HDI-project/ATM', - version='0.1.2-dev', + version='0.1.2', zip_safe=False, )