Skip to content

Commit

Permalink
Bump version: 0.1.1-dev → 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
csala committed Apr 2, 2019
1 parent 589706c commit f1bc143
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion atm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

__author__ = """MIT Data To AI Lab"""
__email__ = '[email protected]'
__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',
Expand Down
11 changes: 6 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[bumpversion]
current_version = 0.1.1-dev
current_version = 0.1.1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = release
values =
values =
dev
release

Expand All @@ -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
Expand All @@ -47,3 +47,4 @@ test = pytest

[tool:pytest]
collect_ignore = ['setup.py']

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit f1bc143

Please sign in to comment.