From 17b92a0e94792c10cb3b4b80cb7f42fefbf03fd9 Mon Sep 17 00:00:00 2001 From: Vivek Joshy <8206808+vivekjoshy@users.noreply.github.com> Date: Sat, 3 Feb 2024 17:48:03 +0530 Subject: [PATCH] Update patch version Signed-off-by: Vivek Joshy <8206808+vivekjoshy@users.noreply.github.com> --- .bumpversion.toml | 2 +- CHANGELOG.rst | 9 +++++++++ changes/124.bugfix.rst | 1 - openskill/__init__.py | 2 +- pyproject.toml | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) delete mode 100644 changes/124.bugfix.rst diff --git a/.bumpversion.toml b/.bumpversion.toml index f451e46..f926114 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -7,7 +7,7 @@ tag = false sign_tags = false tag_name = "v{new_version}" tag_message = "Bump version: {current_version} → {new_version}" -current_version = "5.1.0" +current_version = "5.1.1" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(\\-(?P[a-z]+)\\.(?P\\d+))?" serialize = [ "{major}.{minor}.{patch}-{release}.{build}", diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f5b0825..3a984be 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,15 @@ This file is updated every release since v1.0.0 with the use of towncrier from t .. towncrier release notes start +Openskill 5.1.1 (2024-02-03) +============================ + +Bugfixes +-------- + +- Resolves incorrect predictions for matches of size greater than 2. (`#124 `_) + + Openskill 5.1.0 (2023-08-24) ============================ diff --git a/changes/124.bugfix.rst b/changes/124.bugfix.rst deleted file mode 100644 index b10d938..0000000 --- a/changes/124.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Resolves incorrect predictions for matches of size greater than 2. diff --git a/openskill/__init__.py b/openskill/__init__.py index 79298a4..6a64e45 100644 --- a/openskill/__init__.py +++ b/openskill/__init__.py @@ -5,7 +5,7 @@ # Metadata -__version__ = "5.1.0" +__version__ = "5.1.1" __author__ = "Vivek Joshy" __email__ = "vivek@opendebates.net" __copyright__ = "Copyright 2023, Vivek Joshy" diff --git a/pyproject.toml b/pyproject.toml index 6c9bae1..01deb64 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ strict = true [project] name = "openskill" -version = "5.1.0" +version = "5.1.1" authors = [ {name = "Vivek Joshy", email = "vivek@opendebates.net"}, ]