diff --git a/atm/__init__.py b/atm/__init__.py index ed4f58a..6d9914a 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.1-dev' +__version__ = '0.1.1' # 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 456fa01..6b17b69 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,15 +1,15 @@ [bumpversion] -current_version = 0.1.1-dev +current_version = 0.1.1 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 @@ -27,13 +27,13 @@ universal = 1 [flake8] max-line-length = 99 exclude = docs, .git, __pycache__, .ipynb_checkpoints -ignore = # Keep empty to prevent default ignores +ignore = # Keep empty to prevent default ignores [isort] include_trailing_comment = True known_first_party = atm known_third_party = sqlalchemy -line_length=99 +line_length = 99 lines_between_types = 0 multi_line_output = 4 use_parentheses = True @@ -47,3 +47,4 @@ test = pytest [tool:pytest] collect_ignore = ['setup.py'] + diff --git a/setup.py b/setup.py index 222ece0..d3ae04d 100644 --- a/setup.py +++ b/setup.py @@ -102,6 +102,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/HDI-project/ATM', - version='0.1.1-dev', + version='0.1.1', zip_safe=False, )