Skip to content

Commit 4c77399

Browse files
committed
Bump version: 2.0.5 → 2.1.0
1 parent bfb4412 commit 4c77399

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

Diff for: docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# The short X.Y version
2626
version = u'2.0'
2727
# The full version, including alpha/beta/rc tags
28-
release = u'2.0.5'
28+
release = u'2.1.0'
2929

3030

3131
# -- General configuration ---------------------------------------------------

Diff for: niapy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
__all__ = ["algorithms", "problems", "util", "task", "Runner"]
99
__project__ = "NiaPy"
10-
__version__ = "2.0.5"
10+
__version__ = "2.1.0"
1111

1212
VERSION = "{0} v{1}".format(__project__, __version__)

Diff for: pyproject.toml

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
[tool]
12
[tool.poetry]
23
name = "niapy"
3-
version = "2.0.5"
4+
version = "2.1.0"
45
description = "Python micro framework for building nature-inspired algorithms."
56
authors = ["NiaOrg <[email protected]>"]
67
license = "MIT"
@@ -54,12 +55,9 @@ git-changelog = "^2.4.0"
5455
bump-my-version = "^0.15.3"
5556
pandoc = "^2.3"
5657

57-
[build-system]
58-
requires = ["poetry-core"]
59-
build-backend = "poetry.core.masonry.api"
6058

6159
[tool.bumpversion]
62-
current_version = "2.0.5"
60+
current_version = "2.1.0"
6361
allow_dirty = true
6462
commit = true
6563
tag = true
@@ -85,6 +83,7 @@ filename = "docs/source/conf.py"
8583
search = "release = u'{current_version}'"
8684
replace = "release = u'{new_version}'"
8785

86+
8887
[tool.git-changelog]
8988
convention = "basic"
9089
in-place = true
@@ -94,4 +93,8 @@ parse-refs = true
9493
parse-trailers = true
9594
repository = "."
9695
provider = "github"
97-
template = "keepachangelog"
96+
template = "keepachangelog"
97+
[build-system]
98+
requires = ["poetry-core"]
99+
build-backend = "poetry.core.masonry.api"
100+

0 commit comments

Comments
 (0)