From d81a395d3c394ef7c3f03dd75f8bd3b2c75a1cd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Fri, 23 Aug 2024 16:26:48 +0100 Subject: [PATCH] Release 0.8.3 (#354) Release 0.8.3 * changelog * version bump --- README.md | 2 +- docs/source/_static/switcher.json | 7 +++++- docs/source/user_documentation/changelog.rst | 25 ++++++++++++++++++++ pyproject.toml | 2 +- skbase/__init__.py | 2 +- 5 files changed, 34 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bfc002a3..f00e4a56 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ `skbase` provides base classes for creating scikit-learn-like parametric objects, along with tools to make it easier to build your own packages that follow these design patterns. -:rocket: Version 0.8.2 is now available. Check out our +:rocket: Version 0.8.3 is now available. Check out our [release notes](https://skbase.readthedocs.io/en/latest/changelog.html). | Overview | | diff --git a/docs/source/_static/switcher.json b/docs/source/_static/switcher.json index 1c2845f1..6d2261c4 100644 --- a/docs/source/_static/switcher.json +++ b/docs/source/_static/switcher.json @@ -5,7 +5,12 @@ "url": "https://skbase.readthedocs.io/en/latest/" }, { - "name": "0.8.2 (stable)", + "name": "0.8.3 (stable)", + "version": "stable", + "url": "https://skbase.readthedocs.io/en/v0.8.3/" + }, + { + "name": "0.8.2", "version": "stable", "url": "https://skbase.readthedocs.io/en/v0.8.2/" }, diff --git a/docs/source/user_documentation/changelog.rst b/docs/source/user_documentation/changelog.rst index 95096e26..d47cff16 100644 --- a/docs/source/user_documentation/changelog.rst +++ b/docs/source/user_documentation/changelog.rst @@ -14,6 +14,31 @@ You can also subscribe to ``skbase``'s For planned changes and upcoming releases, see our :ref:`roadmap`. +[0.8.3] - 2024-08-23 +==================== + +Regular maintenance release. + +Contents +-------- + +* [MNT] release workflow: Upgrade deprecated pypa action parameter + (:pr:`349`) :user:`szepeviktor` +* [MNT] pre-commit autoupdate by (:pr:`353`) :user:`pre-commit-ci` +* [ENH] StderrMute context manager (:pr:`350`) :user:`XinyuWuu` +* [BUG] fix dependency checkers in case of multiple distributions available in + environment, e.g., on databricks (:pr:`352`) :user:`fkiraly`, :user:`toandaominh1997` +* [ENH] safer ``get_fitted_params`` default functionality to avoid exception + on ``getattr`` (:pr:`353`) :user:`fkiraly` + +Contributors +------------ + +:user:`fkiraly`, +:user:`szepeviktor`, +:user:`toandaominh1997`, +:user:`yarnabrina` + [0.8.2] - 2024-08-02 ==================== diff --git a/pyproject.toml b/pyproject.toml index 1d48d993..d00ccdf4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "scikit-base" -version = "0.8.2" +version = "0.8.3" description = "Base classes for sklearn-like parametric objects" authors = [ {name = "sktime developers", email = "sktime.toolbox@gmail.com"}, diff --git a/skbase/__init__.py b/skbase/__init__.py index db506b89..6c169a10 100644 --- a/skbase/__init__.py +++ b/skbase/__init__.py @@ -6,4 +6,4 @@ The included functionality makes it easy to reuse scikit-learn and sktime design principles in your project. """ -__version__: str = "0.8.2" +__version__: str = "0.8.3"