Bump version: 0.1.1-dev0 → 0.1.1-rc0

This commit is contained in:
blackfly 2020-04-27 12:56:42 +02:00
parent cf0659d881
commit 0cfbc0473b
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.1-dev0
current_version = 0.1.1-rc0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?

View File

@ -1,6 +1,6 @@
"""ProtoTorch package."""
__version__ = '0.1.1-dev0'
__version__ = '0.1.1-rc0'
from prototorch import datasets, functions, modules

View File

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