diff --git a/docs/source/conf.py b/docs/source/conf.py index 37519c59..fa7b6a37 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.5' +release = u'2.1.0' # -- General configuration --------------------------------------------------- diff --git a/niapy/__init__.py b/niapy/__init__.py index 3653dfcf..08df6a8a 100644 --- a/niapy/__init__.py +++ b/niapy/__init__.py @@ -7,6 +7,6 @@ __all__ = ["algorithms", "problems", "util", "task", "Runner"] __project__ = "NiaPy" -__version__ = "2.0.5" +__version__ = "2.1.0" VERSION = "{0} v{1}".format(__project__, __version__) diff --git a/pyproject.toml b/pyproject.toml index f85caedb..08862468 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,7 @@ +[tool] [tool.poetry] name = "niapy" -version = "2.0.5" +version = "2.1.0" description = "Python micro framework for building nature-inspired algorithms." authors = ["NiaOrg "] license = "MIT" @@ -54,12 +55,9 @@ git-changelog = "^2.4.0" bump-my-version = "^0.15.3" pandoc = "^2.3" -[build-system] -requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api" [tool.bumpversion] -current_version = "2.0.5" +current_version = "2.1.0" allow_dirty = true commit = true tag = true @@ -85,6 +83,7 @@ filename = "docs/source/conf.py" search = "release = u'{current_version}'" replace = "release = u'{new_version}'" + [tool.git-changelog] convention = "basic" in-place = true @@ -94,4 +93,8 @@ parse-refs = true parse-trailers = true repository = "." provider = "github" -template = "keepachangelog" \ No newline at end of file +template = "keepachangelog" +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" +