From 71602bf38a09148eab13d98c9f89589b345ac570 Mon Sep 17 00:00:00 2001 From: Alexander Engelsberger Date: Mon, 21 Jun 2021 16:47:17 +0200 Subject: [PATCH] =?UTF-8?q?build:=20bump=20version=200.1.8=20=E2=86=92=200?= =?UTF-8?q?.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/source/conf.py | 2 +- prototorch/models/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d5b7a89..3e71ed8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.8 +current_version = 0.2.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 5db5266..ae4e266 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "Jensun Ravichandran" # The full version, including alpha/beta/rc tags # -release = "0.1.8" +release = "0.2.0" # -- General configuration --------------------------------------------------- diff --git a/prototorch/models/__init__.py b/prototorch/models/__init__.py index 420a580..728c922 100644 --- a/prototorch/models/__init__.py +++ b/prototorch/models/__init__.py @@ -23,4 +23,4 @@ from .probabilistic import CELVQ, PLVQ, RSLVQ, SLVQ from .unsupervised import GrowingNeuralGas, HeskesSOM, KohonenSOM, NeuralGas from .vis import * -__version__ = "0.1.8" +__version__ = "0.2.0" diff --git a/setup.py b/setup.py index d41eb13..12f461d 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ ALL = CLI + DEV + DOCS + EXAMPLES + TESTS setup( name=safe_name("prototorch_" + PLUGIN_NAME), - version="0.1.8", + version="0.2.0", description="Pre-packaged prototype-based " "machine learning models using ProtoTorch and PyTorch-Lightning.", long_description=long_description,