Skip to content

Commit d80ad0d

Browse files
authored
Release 0.12.6 (#448)
Release 0.12.6 * changelog * version bump
1 parent 207c926 commit d80ad0d

File tree

5 files changed

+37
-4
lines changed

5 files changed

+37
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
`skbase` provides base classes for creating scikit-learn-like parametric objects,
88
along with tools to make it easier to build your own packages that follow these design patterns.
99

10-
:rocket: Version 0.12.5 is now available. Check out our
10+
:rocket: Version 0.12.6 is now available. Check out our
1111
[release notes](https://skbase.readthedocs.io/en/latest/changelog.html).
1212

1313
| Overview | |

docs/source/_static/switcher.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55
"url": "https://skbase.readthedocs.io/en/latest/"
66
},
77
{
8-
"name": "0.12.5 (stable)",
8+
"name": "0.12.6 (stable)",
9+
"version": "stable",
10+
"url": "https://skbase.readthedocs.io/en/v0.1265/"
11+
},
12+
{
13+
"name": "0.12.5",
914
"version": "stable",
1015
"url": "https://skbase.readthedocs.io/en/v0.12.5/"
1116
},

docs/source/user_documentation/changelog.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,34 @@ You can also subscribe to ``skbase``'s
1414

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

17+
[0.12.6] - 2025-09-18
18+
=====================
19+
20+
Minor release with feature, bugfix, and maintenance updates.
21+
22+
Contents
23+
--------
24+
25+
* [ENH] update ``_safe_import`` to state in ``sktime`` and ``pytorch_forecasting``
26+
(:pr:`441`) :user:`fkiraly`
27+
* [ENH] improved `QuickTester`: verbosity levels, plugin structure for fixture
28+
generation handling (:pr:`446`) :user:`fkiraly`
29+
* [BUG] fix ``TagAliaserMixin`` ``get_tag``
30+
and ``get_class_tag`` (:pr:`445`) :user:`fkiraly`
31+
* [MNT] Check versions in wheels workflow (:pr:`440`) :user:`szepeviktor`
32+
* [MNT] [Dependabot](deps): Bump ``actions/setup-node`` from ``4`` to ``5``
33+
(:pr:`443`) :user:`dependabot[bot]`
34+
* [MNT] [Dependabot](deps): Bump ``actions/setup-python`` from ``5`` to ``6``
35+
(:pr:`444`) :user:`dependabot[bot]`
36+
* [pre-commit.ci] pre-commit autoupdate (:pr:`447`) :user:`pre-commit-ci[bot]`
37+
38+
Contributors
39+
------------
40+
41+
:user:`fkiraly`,
42+
:user:`szepeviktor`
43+
44+
1745
[0.12.5] - 2025-08-17
1846
=====================
1947

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "scikit-base"
3-
version = "0.12.5"
3+
version = "0.12.6"
44
description = "Base classes for sklearn-like parametric objects"
55
authors = [
66
{name = "sktime developers", email = "sktime.toolbox@gmail.com"},

skbase/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
The included functionality makes it easy to reuse scikit-learn and
77
sktime design principles in your project.
88
"""
9-
__version__: str = "0.12.5"
9+
__version__: str = "0.12.6"

0 commit comments

Comments
 (0)