diff --git a/docs/source/conf.py b/docs/source/conf.py index e38e2027..71516041 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.5.1' +release = u'2.5.2' # -- General configuration --------------------------------------------------- diff --git a/niapy/__init__.py b/niapy/__init__.py index 1b4ee22d..f07aa6cc 100644 --- a/niapy/__init__.py +++ b/niapy/__init__.py @@ -7,6 +7,6 @@ __all__ = ["algorithms", "problems", "util", "task", "Runner"] __project__ = "NiaPy" -__version__ = "2.5.1" +__version__ = "2.5.2" VERSION = "{0} v{1}".format(__project__, __version__) diff --git a/pyproject.toml b/pyproject.toml index 87cd1fe6..95cde258 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "niapy" -version = "2.5.1" +version = "2.5.2" 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.5.1" +current_version = "2.5.2" allow_dirty = true commit = true tag = true @@ -90,6 +90,7 @@ replace = "release = u'{new_version}'" + [tool.git-changelog] convention = "basic" in-place = true @@ -106,6 +107,7 @@ template = "keepachangelog" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"