From d16a0de202ffce620728dea6c23dbf21d875567f Mon Sep 17 00:00:00 2001 From: Alexander Engelsberger Date: Tue, 17 May 2022 12:04:08 +0200 Subject: [PATCH] =?UTF-8?q?build:=20bump=20version=200.5.0=20=E2=86=92=200?= =?UTF-8?q?.5.1?= 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 6519859..7f9fb04 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0 +current_version = 0.5.1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 46fc261..5357413 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.5.0" +release = "0.5.1" # -- General configuration --------------------------------------------------- diff --git a/prototorch/models/__init__.py b/prototorch/models/__init__.py index b947e4b..d5c1908 100644 --- a/prototorch/models/__init__.py +++ b/prototorch/models/__init__.py @@ -36,4 +36,4 @@ from .unsupervised import ( ) from .vis import * -__version__ = "0.5.0" +__version__ = "0.5.1" diff --git a/setup.py b/setup.py index eb9654b..d9af448 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.5.0", + version="0.5.1", description="Pre-packaged prototype-based " "machine learning models using ProtoTorch and PyTorch-Lightning.", long_description=long_description,