From aaa3c51e0acb8dae4dd14647f3c204f96b543667 Mon Sep 17 00:00:00 2001 From: Alexander Engelsberger Date: Thu, 9 Dec 2021 15:58:16 +0100 Subject: [PATCH] =?UTF-8?q?build:=20bump=20version=200.3.0=20=E2=86=92=200?= =?UTF-8?q?.4.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 c37551a..1af13e7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.4.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 b02a87b..0b30dea 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.3.0" +release = "0.4.0" # -- General configuration --------------------------------------------------- diff --git a/prototorch/models/__init__.py b/prototorch/models/__init__.py index 195b56a..b75d45e 100644 --- a/prototorch/models/__init__.py +++ b/prototorch/models/__init__.py @@ -21,4 +21,4 @@ from .probabilistic import CELVQ, PLVQ, RSLVQ, SLVQ from .unsupervised import GrowingNeuralGas, HeskesSOM, KohonenSOM, NeuralGas from .vis import * -__version__ = "0.3.0" +__version__ = "0.4.0" diff --git a/setup.py b/setup.py index a31ebe8..9c5f70f 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ ALL = CLI + DEV + DOCS + EXAMPLES + TESTS setup( name=safe_name("prototorch_" + PLUGIN_NAME), - version="0.3.0", + version="0.4.0", description="Pre-packaged prototype-based " "machine learning models using ProtoTorch and PyTorch-Lightning.", long_description=long_description,