From fcd944d3ffa287d089dfd2f85a0a51bef914232d Mon Sep 17 00:00:00 2001 From: Alexander Engelsberger Date: Wed, 1 Jun 2022 14:25:44 +0200 Subject: [PATCH] =?UTF-8?q?build:=20bump=20version=200.5.1=20=E2=86=92=200?= =?UTF-8?q?.5.2?= 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 7f9fb04..861cb09 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.1 +current_version = 0.5.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 5357413..3287855 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.1" +release = "0.5.2" # -- General configuration --------------------------------------------------- diff --git a/prototorch/models/__init__.py b/prototorch/models/__init__.py index d5c1908..40e6ab5 100644 --- a/prototorch/models/__init__.py +++ b/prototorch/models/__init__.py @@ -36,4 +36,4 @@ from .unsupervised import ( ) from .vis import * -__version__ = "0.5.1" +__version__ = "0.5.2" diff --git a/setup.py b/setup.py index b959a18..1afc4bc 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.1", + version="0.5.2", description="Pre-packaged prototype-based " "machine learning models using ProtoTorch and PyTorch-Lightning.", long_description=long_description,