diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0d69a95..c07c912 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.7.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 dcada81..ae0e215 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.6.0" +release = "0.7.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index fd6a6d9..dba5117 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "prototorch-models" -version = "0.6.0" +version = "0.7.0" description = "Pre-packaged prototype-based machine learning models using ProtoTorch and PyTorch-Lightning." authors = [ { name = "Jensun Ravichandran", email = "jjensun@gmail.com" }, diff --git a/src/prototorch/models/__init__.py b/src/prototorch/models/__init__.py index 3a3b8f9..d81d5a8 100644 --- a/src/prototorch/models/__init__.py +++ b/src/prototorch/models/__init__.py @@ -36,4 +36,4 @@ from .unsupervised import ( ) from .vis import * -__version__ = "0.6.0" +__version__ = "0.7.0"