From db842b79bb44d7dfad9f9bf674cfff9fcfb935f8 Mon Sep 17 00:00:00 2001 From: Jensun Ravichandran Date: Wed, 14 Apr 2021 19:21:14 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.1-rc0=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 16 ++++++++-------- docs/source/conf.py | 2 +- prototorch/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2c978b8..bcfb909 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,19 +1,19 @@ [bumpversion] -current_version = 0.1.1-rc0 +current_version = 0.2.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\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] diff --git a/docs/source/conf.py b/docs/source/conf.py index 66bf429..4ff520f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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 --------------------------------------------------- diff --git a/prototorch/__init__.py b/prototorch/__init__.py index 3dcd45f..7dd0958 100644 --- a/prototorch/__init__.py +++ b/prototorch/__init__.py @@ -1,6 +1,6 @@ """ProtoTorch package.""" -__version__ = '0.1.1-rc0' +__version__ = '0.2.0' from prototorch import datasets, functions, modules diff --git a/setup.py b/setup.py index 8cfa440..28bd394 100644 --- a/setup.py +++ b/setup.py @@ -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.",