Skip to content

Commit f1bc143

Browse files
committed
Bump version: 0.1.1-dev → 0.1.1
1 parent 589706c commit f1bc143

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

atm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
__author__ = """MIT Data To AI Lab"""
1414
__email__ = '[email protected]'
15-
__version__ = '0.1.1-dev'
15+
__version__ = '0.1.1'
1616

1717
# this defines which modules will be imported by "from atm import *"
1818
__all__ = ['config', 'classifier', 'constants', 'database', 'enter_data',

setup.cfg

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[bumpversion]
2-
current_version = 0.1.1-dev
2+
current_version = 0.1.1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
6-
serialize =
6+
serialize =
77
{major}.{minor}.{patch}-{release}
88
{major}.{minor}.{patch}
99

1010
[bumpversion:part:release]
1111
optional_value = release
12-
values =
12+
values =
1313
dev
1414
release
1515

@@ -27,13 +27,13 @@ universal = 1
2727
[flake8]
2828
max-line-length = 99
2929
exclude = docs, .git, __pycache__, .ipynb_checkpoints
30-
ignore = # Keep empty to prevent default ignores
30+
ignore = # Keep empty to prevent default ignores
3131

3232
[isort]
3333
include_trailing_comment = True
3434
known_first_party = atm
3535
known_third_party = sqlalchemy
36-
line_length=99
36+
line_length = 99
3737
lines_between_types = 0
3838
multi_line_output = 4
3939
use_parentheses = True
@@ -47,3 +47,4 @@ test = pytest
4747

4848
[tool:pytest]
4949
collect_ignore = ['setup.py']
50+

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@
102102
test_suite='tests',
103103
tests_require=tests_require,
104104
url='https://github.com/HDI-project/ATM',
105-
version='0.1.1-dev',
105+
version='0.1.1',
106106
zip_safe=False,
107107
)

0 commit comments

Comments
 (0)