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

View File

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

View File

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

View File

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