Skip to content

Commit 77e8f8b

Browse files
committed
Bump minor version
Signed-off-by: Vivek Joshy <8206808+vivekjoshy@users.noreply.github.com>
1 parent a4439f7 commit 77e8f8b

File tree

8 files changed

+128
-31
lines changed

8 files changed

+128
-31
lines changed

.bumpversion.cfg

Lines changed: 0 additions & 19 deletions
This file was deleted.

.bumpversion.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[tool.bumpversion]
2+
allow_dirty = true
3+
commit = false
4+
message = "Bump version: {current_version} → {new_version}"
5+
commit_args = ""
6+
tag = false
7+
sign_tags = false
8+
tag_name = "v{new_version}"
9+
tag_message = "Bump version: {current_version} → {new_version}"
10+
current_version = "5.1.0"
11+
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\-(?P<release>[a-z]+)\\.(?P<build>\\d+))?"
12+
serialize = [
13+
"{major}.{minor}.{patch}-{release}.{build}",
14+
"{major}.{minor}.{patch}"
15+
]
16+
search = "{current_version}"
17+
replace = "{new_version}"
18+
19+
[tool.bumpversion.parts.release]
20+
values = [
21+
"alpha",
22+
"beta",
23+
"gamma"
24+
]
25+
optional_value = "gamma"
26+
27+
[[tool.bumpversion.files]]
28+
filename = "openskill/__init__.py"
29+
30+
[[tool.bumpversion.files]]
31+
filename = "pyproject.toml"

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ This file is updated every release since v1.0.0 with the use of towncrier from t
44

55
.. towncrier release notes start
66
7+
Openskill 5.1.0 (2023-08-24)
8+
============================
9+
10+
Features
11+
--------
12+
13+
- Optimize rating objects for deepcopy (`#108 <https://github.com/OpenDebates/openskill.py/issues/108>`_)
14+
15+
16+
Bugfixes
17+
--------
18+
19+
- model.rating() methods no longer revert to default model parameters when arguments are 0 (`#109 <https://github.com/OpenDebates/openskill.py/issues/109>`_)
20+
21+
722
Openskill 5.0.2 (2023-08-13)
823
============================
924

changes/108.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/109.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

openskill/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
# Metadata
8-
__version__ = "5.0.2"
8+
__version__ = "5.1.0"
99
__author__ = "Vivek Joshy"
1010
__email__ = "vivek@opendebates.net"
1111
__copyright__ = "Copyright 2023, Vivek Joshy"

pdm.lock

Lines changed: 79 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ strict = true
4242

4343
[project]
4444
name = "openskill"
45-
version = "5.0.2"
45+
version = "5.1.0"
4646
authors = [
4747
{name = "Vivek Joshy", email = "vivek@opendebates.net"},
4848
]
@@ -106,7 +106,7 @@ release = [
106106
"black[jupyter]~=23.7",
107107
"codecov~=2.1",
108108
"towncrier~=23.6",
109-
"bump2version~=1.0",
109+
"bump-my-version~=0.9.2",
110110
]
111111
benchmarks = [
112112
"rbo~=0.1",

0 commit comments

Comments
 (0)