Skip to content

Commit

Permalink
Bump version: 0.1.0-dev → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
csala committed May 6, 2019
1 parent cc2ea85 commit 1501eb0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
[bumpversion]
current_version = 0.1.0-dev
current_version = 0.1.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}

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

values =
dev
release

[bumpversion:file:setup.py]
search = version='{current_version}'
Expand All @@ -32,7 +31,7 @@ ignore = # keep empty to prevent default ignores

[isort]
include_trailing_comment = True
line_length=99
line_length = 99
lines_between_types = 0
multi_line_output = 4
not_skip = __init__.py
Expand All @@ -43,3 +42,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 @@ -95,6 +95,6 @@
test_suite='tests',
tests_require=test_require,
url='https://github.com/DAI-Lab/TGAN',
version='0.1.0-dev',
version='0.1.0',
zip_safe=False,
)
2 changes: 1 addition & 1 deletion tgan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__author__ = """MIT Data To AI Lab"""
__email__ = '[email protected]'
__version__ = '0.1.0-dev'
__version__ = '0.1.0'

0 comments on commit 1501eb0

Please sign in to comment.