From ca2ced87494e5689f57737459c6e9a1e79154cac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grega=20Vrban=C4=8Di=C4=8D?= Date: Sun, 22 May 2022 10:25:28 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.1=20=E2=86=92=202.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/source/conf.py | 2 +- niapy/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5c92d8b4..b73ce83c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.1 +current_version = 2.0.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)(\.(?P\d+))(\-?((rc)?(?P\d+))?) diff --git a/docs/source/conf.py b/docs/source/conf.py index 64e57266..477ed944 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ # The short X.Y version version = u'2.0' # The full version, including alpha/beta/rc tags -release = u'2.0.1' +release = u'2.0.2' # -- General configuration --------------------------------------------------- diff --git a/niapy/__init__.py b/niapy/__init__.py index e57d4a89..989d0557 100644 --- a/niapy/__init__.py +++ b/niapy/__init__.py @@ -7,6 +7,6 @@ __all__ = ["algorithms", "problems", "util", "task", "Runner"] __project__ = "NiaPy" -__version__ = "2.0.1" +__version__ = "2.0.2" VERSION = "{0} v{1}".format(__project__, __version__) diff --git a/setup.py b/setup.py index d499102c..a32483b8 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ def build_description(): setuptools.setup( name=PACKAGE_NAME, - version="2.0.1", + version="2.0.2", description="Python micro framework for building nature-inspired algorithms.", url='https://github.com/NiaOrg/NiaPy', author='NiaOrg',