Bump version: 0.0.0-dev1 → 0.1.0-dev0

This commit is contained in:
blackfly 2020-04-06 18:22:15 +02:00
parent f1b3f8a693
commit 4ec0bb5e60
3 changed files with 8 additions and 7 deletions

View File

@ -1,20 +1,21 @@
[bumpversion]
current_version = 0.0.0-dev1
current_version = 0.1.0-dev0
commit = True
tag = False
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}{build}
{major}.{minor}.{patch}
[bumpversion:part:release]
optional_value = prod
first_value = dev
values =
values =
dev
rc
prod
prod
[bumpversion:file:setup.py]
[bumpversion:file:./prototorch/__init__.py]

View File

@ -1 +1 @@
__version__ = '0.0.0-dev1'
__version__ = '0.1.0-dev0'

View File

@ -10,7 +10,7 @@ with open('README.md', 'r') as fh:
long_description = fh.read()
setup(name='prototorch',
version='0.0.0-dev1',
version='0.1.0-dev0',
description='Highly extensible, GPU-supported '
'Learning Vector Quantization (LVQ) toolbox '
'built using PyTorch and its nn API.',