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" },