From f7afe3f366518f3ade1c28781c4f91959981c5dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Wed, 3 Jun 2026 22:41:14 +0200 Subject: [PATCH 1/2] v bump --- README.md | 2 +- docs/source/_static/switcher.json | 7 ++++++- docs/source/user_documentation/changelog.rst | 19 +++++++++++++++++++ pyproject.toml | 2 +- skbase/__init__.py | 2 +- 5 files changed, 28 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 34002727..9b29eaea 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 1.0.0 is now available. Check out our +:rocket: Version 1.0.1 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 5c8a0420..99da4d46 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": "1.0.0 (stable)", + "name": "1.0.1 (stable)", + "version": "stable", + "url": "https://skbase.readthedocs.io/en/v1.0.1/" + }, + { + "name": "1.0.0", "version": "stable", "url": "https://skbase.readthedocs.io/en/v1.0.0/" }, diff --git a/docs/source/user_documentation/changelog.rst b/docs/source/user_documentation/changelog.rst index 3d23e237..13a946f0 100644 --- a/docs/source/user_documentation/changelog.rst +++ b/docs/source/user_documentation/changelog.rst @@ -14,6 +14,25 @@ You can also subscribe to ``skbase``'s For planned changes and upcoming releases, see our :ref:`roadmap`. +[1.0.1] - 2026-06-03 +==================== + +Bugfix, and maintenance release. + +Enhancements +------------ + +Fixes +----- + +Maintenance +----------- + +Contributors +------------ + + + [1.0.0] - 2026-04-19 ==================== diff --git a/pyproject.toml b/pyproject.toml index 91dacdc1..e88d7ae6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "scikit-base" -version = "1.0.0" +version = "1.0.1" 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 0e07b7b5..327842fb 100644 --- a/skbase/__init__.py +++ b/skbase/__init__.py @@ -7,4 +7,4 @@ sktime design principles in your project. """ -__version__: str = "1.0.0" +__version__: str = "1.0.1" From c6e3eec2229ae981b7c47edbb42091525e983060 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Wed, 3 Jun 2026 22:54:50 +0200 Subject: [PATCH 2/2] Update changelog.rst --- docs/source/user_documentation/changelog.rst | 26 +++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/docs/source/user_documentation/changelog.rst b/docs/source/user_documentation/changelog.rst index 13a946f0..f54479f3 100644 --- a/docs/source/user_documentation/changelog.rst +++ b/docs/source/user_documentation/changelog.rst @@ -17,20 +17,44 @@ For planned changes and upcoming releases, see our :ref:`roadmap`. [1.0.1] - 2026-06-03 ==================== -Bugfix, and maintenance release. +Bugfix and maintenance release. Enhancements ------------ +* [ENH] safer ``get_params(deep=True)`` nesting (:pr:`562`) :user:`fkiraly` + Fixes ----- +* [BUG] Fix ``get_params(deep=True)`` for ``BaseObject`` class parameters + (:pr:`559`) :user:`patelchaitany` +* [BUG] Fix ``deep_equals`` failing on string-dtype ``numpy`` arrays (``numpy < 2.0``) + (:pr:`519`) :user:`shourya1419-netizen` +* [BUG] Fix in-place mutation in ``make_strings_unique`` + (:pr:`553`) :user:`SHIVANSH-ux-ys` + Maintenance ----------- +* [MNT] [Dependabot](deps): Bump ``astral-sh/setup-uv`` from ``4`` to ``7`` + (:pr:`546`) :user:`dependabot[bot]` +* [MNT] [Dependabot](deps): Bump ``actions/setup-python`` from ``5`` to ``6`` + (:pr:`547`) :user:`dependabot[bot]` +* [MNT] [Dependabot](deps-dev): Update ``sphinx-gallery`` requirement from ``<0.21.0`` + to ``<0.22.0`` (:pr:`548`) :user:`dependabot[bot]` +* [MNT] update release workflow to simplified setup (:pr:`550`) :user:`fkiraly` +* [MNT] [Dependabot](deps): Bump ``actions/dependency-review-action`` from + ``4`` to ``5`` (:pr:`556`) :user:`dependabot[bot]` +* [pre-commit.ci] pre-commit autoupdate (:pr:`552`) :user:`pre-commit-ci[bot]` +* [pre-commit.ci] pre-commit autoupdate (:pr:`557`) :user:`pre-commit-ci[bot]` Contributors ------------ +:user:`fkiraly`, +:user:`SHIVANSH-ux-ys`, +:user:`shourya1419-netizen`, +:user:`patelchaitany` [1.0.0] - 2026-04-19