From 473cb9e1f35b11760f7a17eaf3bfb3c6e0472884 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Fri, 10 May 2024 01:40:25 +0100 Subject: [PATCH] Release 0.7.8 (#325) Release 0.7.8 * changelog * version bump --- README.md | 2 +- docs/source/_static/switcher.json | 7 ++++++- docs/source/user_documentation/changelog.rst | 17 ++++++++++++++++- pyproject.toml | 2 +- skbase/__init__.py | 2 +- 5 files changed, 25 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c9fec80c..723712e4 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.7.7 is now available. Check out our +:rocket: Version 0.7.8 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 e29ba14b..9e02cfd0 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.7.7 (stable)", + "name": "0.7.8 (stable)", + "version": "stable", + "url": "https://skbase.readthedocs.io/en/v0.7.8/" + }, + { + "name": "0.7.7", "version": "stable", "url": "https://skbase.readthedocs.io/en/v0.7.7/" }, diff --git a/docs/source/user_documentation/changelog.rst b/docs/source/user_documentation/changelog.rst index 5c7907b6..24874a03 100644 --- a/docs/source/user_documentation/changelog.rst +++ b/docs/source/user_documentation/changelog.rst @@ -14,7 +14,22 @@ You can also subscribe to ``skbase``'s For planned changes and upcoming releases, see our :ref:`roadmap`. -[0.7.7] - 2024-03-02 +[0.7.8] - 2024-05-10 +==================== + +Regular bugfix and maintenance release. + +Contents +-------- + +* [BUG] safer comparison in ``deep_equals`` if ``np.any(x != y)`` does not result in + boolean (:pr:`323`) :user:`fkiraly` +* [pre-commit.ci] pre-commit autoupdate (:pr:`322`) :user:`dependabot` +* [MNT] [Dependabot](deps): Update ``sphinx-gallery`` requirement + from ``<0.16.0`` to ``<0.17.0`` (:pr:`321`) :user:`dependabot` + + +[0.7.7] - 2024-04-17 ==================== Small hotfix release. diff --git a/pyproject.toml b/pyproject.toml index 421c3080..9b350cf3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "scikit-base" -version = "0.7.7" +version = "0.7.8" 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 0baa78a8..11eac574 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.7.7" +__version__: str = "0.7.8"