Change version format.

This commit is contained in:
Jacques Wagener 2018-12-10 12:15:26 +02:00
parent 38c3b3087e
commit 514f9f34f4
No known key found for this signature in database
GPG Key ID: C294D1025DA0E923
2 changed files with 7 additions and 8 deletions

View File

@ -1,23 +1,22 @@
[bumpversion] [bumpversion]
current_version = 0.1.2beta3 current_version = 0.1.2-beta.3
commit = True commit = True
tag = True tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*)\.(?P<devnum>\d+))? parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*)\.(?P<devnum>\d+))?
serialize = serialize =
{major}.{minor}.{patch}-{stage}.{devnum} {major}.{minor}.{patch}-{stage}.{devnum}
{major}.{minor}.{patch} {major}.{minor}.{patch}
[bumpversion:part:stage] [bumpversion:part:stage]
optional_value = stable optional_value = stable
first_value = stable first_value = stable
values = values =
alpha alpha
beta beta
stable stable
[bumpversion:part:devnum] [bumpversion:part:devnum]
[bumpversion:file:setup.py] [bumpversion:file:setup.py]
search = version='{current_version}', search = version='{current_version}',
replace = version='{new_version}', replace = version='{new_version}',

View File

@ -38,7 +38,7 @@ extras_require['dev'] = (
setup( setup(
name='vyper-debug', name='vyper-debug',
# *IMPORTANT*: Don't manually change the version here. Use `make bump`, as described in readme # *IMPORTANT*: Don't manually change the version here. Use `make bump`, as described in readme
version='0.1.2beta3', version='0.1.2-beta.3',
description="""vyper-debug: Easy to use Vyper debugger | vdb""", description="""vyper-debug: Easy to use Vyper debugger | vdb""",
long_description_markdown_filename='README.md', long_description_markdown_filename='README.md',
author='Jacques Wagener', author='Jacques Wagener',