Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.0 is now available. Check out our
:rocket: Version 1.1.1 is now available. Check out our
[release notes](https://skbase.readthedocs.io/en/latest/changelog.html).

| Overview | |
Expand Down
33 changes: 33 additions & 0 deletions docs/source/user_documentation/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,39 @@ You can also subscribe to ``skbase``'s

For planned changes and upcoming releases, see our :ref:`roadmap`.

[1.1.1] - 2026-08-25
====================

Bugfix and maintenance release.

Fixes
-----

* [BUG] mute ``stderr`` in ``QuickTester.run_tests``, and fix ``np.all`` generator
checks (:pr:`586`) :user:`yash-sangwan`

Maintenance
-----------

* [MNT] [Dependabot](deps): Bump ``github/codeql-action`` from ``4.37.3`` to ``4.37.4``
(:pr:`579`) :user:`dependabot[bot]`
* [MNT] [Dependabot](deps): Bump ``github/codeql-action`` from ``4.37.4`` to ``4.37.6``
(:pr:`581`) :user:`dependabot[bot]`
* [MNT] [Dependabot](deps): Bump ``github/codeql-action`` from ``4.37.6`` to ``4.37.7``
(:pr:`583`) :user:`dependabot[bot]`
* [MNT] [Dependabot](deps): Bump ``github/codeql-action`` from ``4.37.7`` to ``4.37.8``
(:pr:`585`) :user:`dependabot[bot]`
* [pre-commit.ci] pre-commit autoupdate (:pr:`580`) :user:`pre-commit-ci[bot]`
* [pre-commit.ci] pre-commit autoupdate (:pr:`584`) :user:`pre-commit-ci[bot]`
* [MNT] remove extraneous material from package wheel (:pr:`588`) :user:`fkiraly`

Contributors
------------

:user:`fkiraly`,
:user:`yash-sangwan`


[1.1.0] - 2026-08-02
====================

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 = "scikit-base"
version = "1.1.0"
version = "1.1.1"
description = "Base classes for sklearn-like parametric objects"
authors = [
{name = "sktime developers", email = "sktime.toolbox@gmail.com"},
Expand Down
2 changes: 1 addition & 1 deletion skbase/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
sktime design principles in your project.
"""

__version__: str = "1.1.0"
__version__: str = "1.1.1"
1 change: 0 additions & 1 deletion skbase/utils/dependencies/_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def _safe_import(import_path, pkg_name=None, condition=True, return_object="Magi

Example: ``clone = _safe_import("sklearn.clone", pkg_name="scikit-learn")``.


Parameters
----------
import_path : str
Expand Down
Loading