Skip to content

Commit

Permalink
Release 2.2.1 (#211)
Browse files Browse the repository at this point in the history
Release PR for 2.2.1

* changelog
* version bump
  • Loading branch information
fkiraly authored Mar 3, 2024
1 parent 2096bd0 commit b063d3c
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<a href="https://skpro.readthedocs.io/en/latest"><img src="https://github.com/sktime/skpro/blob/main/docs/source/images/skpro-banner.png" width="500" align="right" /></a>

: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:
Expand Down
7 changes: 6 additions & 1 deletion docs/source/_static/switcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
},
Expand Down
15 changes: 15 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
====================

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]"},
Expand Down
2 changes: 1 addition & 1 deletion skpro/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""skpro."""

__version__ = "2.2.0"
__version__ = "2.2.1"

__all__ = ["show_versions"]

Expand Down

0 comments on commit b063d3c

Please sign in to comment.