From ae75b9ebf7b9c11fcdb19762572c8efc55055f93 Mon Sep 17 00:00:00 2001 From: Alexander Engelsberger Date: Wed, 21 Apr 2021 14:57:45 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.0=20=E2=86=92=200.3.0-dev?= =?UTF-8?q?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/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bcfb909..9d2f895 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.3.0-dev0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/docs/source/conf.py b/docs/source/conf.py index 4ff520f..adb7b43 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,7 @@ author = "Jensun Ravichandran" # The full version, including alpha/beta/rc tags # -release = "0.2.0" +release = "0.3.0-dev0" # -- General configuration --------------------------------------------------- diff --git a/prototorch/__init__.py b/prototorch/__init__.py index 78c8c0e..5c734f1 100644 --- a/prototorch/__init__.py +++ b/prototorch/__init__.py @@ -3,7 +3,7 @@ # ############################################# # Core Setup # ############################################# -__version__ = "0.2.0" +__version__ = "0.3.0-dev0" from prototorch import datasets, functions, modules diff --git a/setup.py b/setup.py index cd6a720..2324b95 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ ALL = DOCS + DATASETS + EXAMPLES + TESTS setup( name="prototorch", - version="0.2.0", + version="0.3.0-dev0", description="Highly extensible, GPU-supported " "Learning Vector Quantization (LVQ) toolbox " "built using PyTorch and its nn API.",