Skip to content

Commit

Permalink
Bump minor version
Browse files Browse the repository at this point in the history
Signed-off-by: Vivek Joshy <[email protected]>
  • Loading branch information
vivekjoshy committed Aug 24, 2023
1 parent a4439f7 commit 77e8f8b
Show file tree
Hide file tree
Showing 8 changed files with 128 additions and 31 deletions.
19 changes: 0 additions & 19 deletions .bumpversion.cfg

This file was deleted.

31 changes: 31 additions & 0 deletions .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[tool.bumpversion]
allow_dirty = true
commit = false
message = "Bump version: {current_version} → {new_version}"
commit_args = ""
tag = false
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
current_version = "5.1.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\-(?P<release>[a-z]+)\\.(?P<build>\\d+))?"
serialize = [
"{major}.{minor}.{patch}-{release}.{build}",
"{major}.{minor}.{patch}"
]
search = "{current_version}"
replace = "{new_version}"

[tool.bumpversion.parts.release]
values = [
"alpha",
"beta",
"gamma"
]
optional_value = "gamma"

[[tool.bumpversion.files]]
filename = "openskill/__init__.py"

[[tool.bumpversion.files]]
filename = "pyproject.toml"
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ This file is updated every release since v1.0.0 with the use of towncrier from t

.. towncrier release notes start
Openskill 5.1.0 (2023-08-24)
============================

Features
--------

- Optimize rating objects for deepcopy (`#108 <https://github.com/OpenDebates/openskill.py/issues/108>`_)


Bugfixes
--------

- model.rating() methods no longer revert to default model parameters when arguments are 0 (`#109 <https://github.com/OpenDebates/openskill.py/issues/109>`_)


Openskill 5.0.2 (2023-08-13)
============================

Expand Down
1 change: 0 additions & 1 deletion changes/108.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion changes/109.bugfix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion openskill/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


# Metadata
__version__ = "5.0.2"
__version__ = "5.1.0"
__author__ = "Vivek Joshy"
__email__ = "[email protected]"
__copyright__ = "Copyright 2023, Vivek Joshy"
Expand Down
86 changes: 79 additions & 7 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ strict = true

[project]
name = "openskill"
version = "5.0.2"
version = "5.1.0"
authors = [
{name = "Vivek Joshy", email = "[email protected]"},
]
Expand Down Expand Up @@ -106,7 +106,7 @@ release = [
"black[jupyter]~=23.7",
"codecov~=2.1",
"towncrier~=23.6",
"bump2version~=1.0",
"bump-my-version~=0.9.2",
]
benchmarks = [
"rbo~=0.1",
Expand Down

0 comments on commit 77e8f8b

Please sign in to comment.