From bc20acd63b7e163e7d8d77a49adef84b26c5cc16 Mon Sep 17 00:00:00 2001 From: Alexander Engelsberger Date: Tue, 11 May 2021 16:08:37 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.1=20=E2=86=92=200.4.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/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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.",