diff --git a/docs/source/conf.py b/docs/source/conf.py index d0bc42da..e3692871 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.2.0' +release = u'2.3.0' # -- General configuration --------------------------------------------------- diff --git a/niapy/__init__.py b/niapy/__init__.py index 0a293a03..69649e25 100644 --- a/niapy/__init__.py +++ b/niapy/__init__.py @@ -7,6 +7,6 @@ __all__ = ["algorithms", "problems", "util", "task", "Runner"] __project__ = "NiaPy" -__version__ = "2.2.0" +__version__ = "2.3.0" VERSION = "{0} v{1}".format(__project__, __version__) diff --git a/pyproject.toml b/pyproject.toml index bb1255a2..4f1aeadf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "niapy" -version = "2.2.0" +version = "2.3.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.2.0" +current_version = "2.3.0" allow_dirty = true commit = true tag = true @@ -85,6 +85,7 @@ replace = "release = u'{new_version}'" + [tool.git-changelog] convention = "basic" in-place = true @@ -96,6 +97,7 @@ repository = "." provider = "github" template = "keepachangelog" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"