diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7a7afb3..f33194a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.1 +current_version = 0.4.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 d505bca..90326b6 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.4.1" +release = "0.4.2" # -- General configuration --------------------------------------------------- diff --git a/prototorch/__init__.py b/prototorch/__init__.py index a038b6a..bbcf68d 100644 --- a/prototorch/__init__.py +++ b/prototorch/__init__.py @@ -1,7 +1,7 @@ """ProtoTorch package.""" # Core Setup -__version__ = "0.4.1" +__version__ = "0.4.2" __all_core__ = [ "datasets", diff --git a/setup.py b/setup.py index 6c7b9a6..b61804f 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ ALL = DATASETS + DEV + DOCS + EXAMPLES + TESTS setup( name="prototorch", - version="0.4.1", + version="0.4.2", description="Highly extensible, GPU-supported " "Learning Vector Quantization (LVQ) toolbox " "built using PyTorch and its nn API.",