Skip to content

Commit

Permalink
Bump version: 0.0.1.dev0 → 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
k15z committed Jul 11, 2020
1 parent 56e6ea1 commit 387f130
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion deepecho/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = 'Kevin Alex Zhang'
__email__ = 'kevz@mit.edu'
__version__ = '0.0.1.dev0'
__version__ = '0.0.1'

from .base import DeepEcho
from .par import PARModel
Expand Down
9 changes: 5 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[bumpversion]
current_version = 0.0.1.dev0
current_version = 0.0.1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}.{release}{candidate}
{major}.{minor}.{patch}

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

Expand All @@ -34,7 +34,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 @@ -45,3 +45,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 @@ -90,6 +90,6 @@
test_suite='tests',
tests_require=tests_require,
url='https://github.com/sdv-dev/DeepEcho',
version='0.0.1.dev0',
version='0.0.1',
zip_safe=False,
)

0 comments on commit 387f130

Please sign in to comment.