From b063d3c77cc762e0654ec4f781a81886de952c84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Sun, 3 Mar 2024 22:56:11 +0100 Subject: [PATCH] Release 2.2.1 (#211) Release PR for 2.2.1 * changelog * version bump --- README.md | 2 +- docs/source/_static/switcher.json | 7 ++++++- docs/source/changelog.rst | 15 +++++++++++++++ pyproject.toml | 2 +- skpro/__init__.py | 2 +- 5 files changed, 24 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 520009520..b4f827a75 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -:rocket: **Version 2.2.0 out now!** [Read the release notes here.](https://skpro.readthedocs.io/en/latest/changelog.html). +:rocket: **Version 2.2.1 out now!** [Read the release notes here.](https://skpro.readthedocs.io/en/latest/changelog.html). `skpro` is a library for supervised probabilistic prediction in python. It provides `scikit-learn`-like, `scikit-base` compatible interfaces to: diff --git a/docs/source/_static/switcher.json b/docs/source/_static/switcher.json index c9f605e5f..955254194 100644 --- a/docs/source/_static/switcher.json +++ b/docs/source/_static/switcher.json @@ -5,7 +5,12 @@ "url": "https://skpro.readthedocs.io/en/latest/" }, { - "name": "2.2.0 (stable)", + "name": "2.2.1 (stable)", + "version": "stable", + "url": "https://skpro.readthedocs.io/en/v2.2.1/" + }, + { + "name": "2.2.0", "version": "stable", "url": "https://skpro.readthedocs.io/en/v2.2.0/" }, diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 67d8d96ae..4c65284be 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -14,6 +14,21 @@ You can also subscribe to ``skpro``'s For planned changes and upcoming releases, see our :ref:`roadmap`. +[2.2.1] - 2023-03-03 +==================== + +Minor bugfix and maintenance release. + +Contents +-------- + +* [ENH] migrate tests of distribution prediction metrics to ``skbase`` class + (:pr:`208`) :user:`fkiraly` +* [BUG] fix dispatching of censoring information in probabilistic metrics + (:pr:`208`) :user:`fkiraly` +* [BUG] fix missing location/scale in `TDistribution` (:pr:`210`) :user:`ivarzap` + + [2.2.0] - 2023-02-08 ==================== diff --git a/pyproject.toml b/pyproject.toml index fccd0dc45..d57bdc91e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "skpro" -version = "2.2.0" +version = "2.2.1" description = "A unified framework for probability distributions and probabilistic supervised regression" authors = [ {name = "skpro developers", email = "sktime.toolbox@gmail.com"}, diff --git a/skpro/__init__.py b/skpro/__init__.py index cd6b99fe6..29af5f98f 100644 --- a/skpro/__init__.py +++ b/skpro/__init__.py @@ -1,6 +1,6 @@ """skpro.""" -__version__ = "2.2.0" +__version__ = "2.2.1" __all__ = ["show_versions"]