From f6e3a37e2bf75cf7bdde7bc6fdab8d5b76344041 Mon Sep 17 00:00:00 2001 From: Alexander Engelsberger Date: Mon, 10 May 2021 16:01:46 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.0=20=E2=86=92=200.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- prototorch/models/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d188091..d8f783e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.0 +current_version = 0.1.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+) diff --git a/prototorch/models/__init__.py b/prototorch/models/__init__.py index 0f1674e..4e1ff6b 100644 --- a/prototorch/models/__init__.py +++ b/prototorch/models/__init__.py @@ -5,4 +5,4 @@ from .glvq import GLVQ, GMLVQ, GRLVQ, LVQMLN, ImageGLVQ, SiameseGLVQ from .neural_gas import NeuralGas from .vis import * -__version__ = "0.0.0" \ No newline at end of file +__version__ = "0.1.0" \ No newline at end of file diff --git a/setup.py b/setup.py index 57f8573..c5547a0 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ ALL = DEV + EXAMPLES + TESTS setup( name=safe_name("prototorch_" + PLUGIN_NAME), - version="0.0.0", + version="0.1.0", description="Pre-packaged prototype-based " "machine learning models using ProtoTorch and PyTorch-Lightning.", long_description=long_description,