From 8ecf9948b2aa5e29ce6b2ae7d23f7746e97a1e5c Mon Sep 17 00:00:00 2001 From: Alexander Engelsberger Date: Thu, 2 Mar 2023 17:24:11 +0000 Subject: [PATCH] =?UTF-8?q?build:=20bump=20version=200.5.2=20=E2=86=92=200?= =?UTF-8?q?.5.3?= 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 861cb09..93a2c82 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.2 +current_version = 0.5.3 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 3287855..3b1f5de 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.2" +release = "0.5.3" # -- General configuration --------------------------------------------------- diff --git a/prototorch/models/__init__.py b/prototorch/models/__init__.py index 40e6ab5..ff28b0a 100644 --- a/prototorch/models/__init__.py +++ b/prototorch/models/__init__.py @@ -36,4 +36,4 @@ from .unsupervised import ( ) from .vis import * -__version__ = "0.5.2" +__version__ = "0.5.3" diff --git a/setup.py b/setup.py index c999a58..7aa3f16 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ ALL = CLI + DEV + DOCS + EXAMPLES + TESTS setup( name=safe_name("prototorch_" + PLUGIN_NAME), - version="0.5.2", + version="0.5.3", description="Pre-packaged prototype-based " "machine learning models using ProtoTorch and PyTorch-Lightning.", long_description=long_description,