From c30fc711b748fae7d7d86b3ad0884ba6e87955bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Sun, 23 Jun 2024 19:45:50 +0100 Subject: [PATCH] Release 2.4.0 (#406) Release PR for 2.4.0 * changelog * version bump --- README.md | 2 +- docs/source/_static/switcher.json | 7 ++++++- docs/source/changelog.rst | 19 +++++++++++++++++++ pyproject.toml | 2 +- skpro/__init__.py | 2 +- 5 files changed, 28 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b2b32af3..eaa430e2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -:rocket: **Version 2.3.2 out now!** [Read the release notes here.](https://skpro.readthedocs.io/en/latest/changelog.html). +:rocket: **Version 2.4.0 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 5c20f970..83d04009 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.3.2 (stable)", + "name": "2.4.0 (stable)", + "version": "stable", + "url": "https://skpro.readthedocs.io/en/v2.4.0/" + }, + { + "name": "2.3.2", "version": "stable", "url": "https://skpro.readthedocs.io/en/v2.3.2/" }, diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 4564fd16..9ee4ad87 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -16,6 +16,25 @@ For planned changes and upcoming releases, see roadmap in the `issue tracker `_. +[2.4.0] - 2024-06-23 +==================== + +Maintenance release with ``numpy 2.0.X`` compatibility, scheduled +deprecations and updates. + +Dependency changes +~~~~~~~~~~~~~~~~~~ + +* ``numpy`` bounds have been updated to ``>=1.21.0,<2.1.0``. + +Contents +-------- + +* [MNT] increase ``numpy`` bound to ``numpy < 2.1``, ``numpy 2`` compatibility + (:pr:`393`) :user:`fkiraly` +* [MNT] 2.4.0 deprecations and change actions (:pr:`404`) :user:`fkiraly` + + [2.3.2] - 2024-06-22 ==================== diff --git a/pyproject.toml b/pyproject.toml index 38493af1..618400a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "skpro" -version = "2.3.2" +version = "2.4.0" 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 efa46527..6aadb250 100644 --- a/skpro/__init__.py +++ b/skpro/__init__.py @@ -1,6 +1,6 @@ """skpro.""" -__version__ = "2.3.2" +__version__ = "2.4.0" __all__ = ["show_versions"]