From 1b5093627ed23f73e93f425bec27baccec92e7ba Mon Sep 17 00:00:00 2001 From: Alexander Engelsberger Date: Tue, 20 Jun 2023 18:50:03 +0200 Subject: [PATCH] =?UTF-8?q?build:=20bump=20version=200.5.4=20=E2=86=92=200?= =?UTF-8?q?.6.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 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9c7133a..00d4093 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.4 +current_version = 0.6.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 656b123..dcada81 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.4" +release = "0.6.0" # -- General configuration --------------------------------------------------- diff --git a/prototorch/models/__init__.py b/prototorch/models/__init__.py index 42e5ca8..3a3b8f9 100644 --- a/prototorch/models/__init__.py +++ b/prototorch/models/__init__.py @@ -36,4 +36,4 @@ from .unsupervised import ( ) from .vis import * -__version__ = "0.5.4" +__version__ = "0.6.0" diff --git a/pyproject.toml b/pyproject.toml index cca8884..07dd972 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "prototorch-models" -version = "0.5.4" +version = "0.6.0" description = "Pre-packaged prototype-based machine learning models using ProtoTorch and PyTorch-Lightning." authors = [ { name = "Jensun Ravichandran", email = "jjensun@gmail.com" },