Bump version: 0.1.1-rc0 → 0.2.0

This commit is contained in:
Jensun Ravichandran 2021-04-14 19:21:14 +02:00
parent 98a8fc52fa
commit db842b79bb
4 changed files with 11 additions and 11 deletions

View File

@ -1,19 +1,19 @@
[bumpversion]
current_version = 0.1.1-rc0
current_version = 0.2.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}{build}
{major}.{minor}.{patch}
serialize =
{major}.{minor}.{patch}-{release}{build}
{major}.{minor}.{patch}
[bumpversion:part:release]
optional_value = prod
first_value = dev
values =
dev
rc
prod
values =
dev
rc
prod
[bumpversion:file:setup.py]

View File

@ -24,7 +24,7 @@ author = "Jensun Ravichandran"
# The full version, including alpha/beta/rc tags
#
release = "0.1.1-rc0"
release = "0.2.0"
# -- General configuration ---------------------------------------------------

View File

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

View File

@ -33,7 +33,7 @@ TESTS = ["pytest"]
ALL = DOCS + DATASETS + EXAMPLES + TESTS
setup(name="prototorch",
version="0.1.1-rc0",
version="0.2.0",
description="Highly extensible, GPU-supported "
"Learning Vector Quantization (LVQ) toolbox "
"built using PyTorch and its nn API.",