From 3b7344e77f73fabf10cabd018cdac77bc5affe29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grega=20Vrban=C4=8Di=C4=8D?= Date: Tue, 29 Oct 2024 15:05:46 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.3.1=20=E2=86=92=202.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/source/conf.py | 2 +- niapy/__init__.py | 2 +- pyproject.toml | 6 ++++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 47438776..b8a30d89 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.3.1' +release = u'2.4.0' # -- General configuration --------------------------------------------------- diff --git a/niapy/__init__.py b/niapy/__init__.py index 04e8e9cc..43877342 100644 --- a/niapy/__init__.py +++ b/niapy/__init__.py @@ -7,6 +7,6 @@ __all__ = ["algorithms", "problems", "util", "task", "Runner"] __project__ = "NiaPy" -__version__ = "2.3.1" +__version__ = "2.4.0" VERSION = "{0} v{1}".format(__project__, __version__) diff --git a/pyproject.toml b/pyproject.toml index 3df39761..21b1e261 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "niapy" -version = "2.3.1" +version = "2.4.0" description = "Python micro framework for building nature-inspired algorithms." authors = ["NiaOrg "] license = "MIT" @@ -57,7 +57,7 @@ pandoc = "^2.3" [tool.bumpversion] -current_version = "2.3.1" +current_version = "2.4.0" allow_dirty = true commit = true tag = true @@ -87,6 +87,7 @@ replace = "release = u'{new_version}'" + [tool.git-changelog] convention = "basic" in-place = true @@ -100,6 +101,7 @@ template = "keepachangelog" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"