File tree 5 files changed +32
-4
lines changed
5 files changed +32
-4
lines changed Original file line number Diff line number Diff line change 7
7
` skbase ` provides base classes for creating scikit-learn-like parametric objects,
8
8
along with tools to make it easier to build your own packages that follow these design patterns.
9
9
10
- :rocket : Version 0.8.0 is now available. Check out our
10
+ :rocket : Version 0.8.1 is now available. Check out our
11
11
[ release notes] ( https://skbase.readthedocs.io/en/latest/changelog.html ) .
12
12
13
13
| Overview | |
Original file line number Diff line number Diff line change 5
5
"url" : " https://skbase.readthedocs.io/en/latest/"
6
6
},
7
7
{
8
- "name" : " 0.8.0 (stable)" ,
8
+ "name" : " 0.8.1 (stable)" ,
9
+ "version" : " stable" ,
10
+ "url" : " https://skbase.readthedocs.io/en/v0.8.1/"
11
+ },
12
+ {
13
+ "name" : " 0.8.0" ,
9
14
"version" : " stable" ,
10
15
"url" : " https://skbase.readthedocs.io/en/v0.8.0/"
11
16
},
Original file line number Diff line number Diff line change @@ -14,6 +14,29 @@ You can also subscribe to ``skbase``'s
14
14
15
15
For planned changes and upcoming releases, see our :ref: `roadmap `.
16
16
17
+
18
+ [0.8.1] - 2024-06-20
19
+ ====================
20
+
21
+ Regular bugfix and maintenance release.
22
+
23
+ Core interface changes
24
+ ----------------------
25
+
26
+ * ``get_param_names `` now allows users to return the parameter names in the same order
27
+ as in the`` ``__init__ `` method, by passing the argument ``sort=False ``.
28
+
29
+ Contents
30
+ --------
31
+
32
+ * [ENH] option to return ``BaseObject.get_param_names `` in the same order as in the
33
+ ``__init__ `` (:pr: `335 `) :user: `fkiraly `
34
+ * [ENH] refactor - move ``StdoutMute `` context manager to ``utils ``
35
+ (:pr: `338 `) :user: `fkiraly `
36
+ * [MNT] ``numpy 2 `` compatibility of some tests (:pr: `337 `) :user: `fkiraly `
37
+ * [pre-commit.ci] pre-commit autoupdate (:pr: `336 `) :user: `pre-commit-ci `
38
+
39
+
17
40
[0.8.0] - 2024-05-25
18
41
====================
19
42
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " scikit-base"
3
- version = " 0.8.0 "
3
+ version = " 0.8.1 "
4
4
description = " Base classes for sklearn-like parametric objects"
5
5
authors = [
6
6
{
name =
" sktime developers" ,
email =
" [email protected] " },
Original file line number Diff line number Diff line change 6
6
The included functionality makes it easy to reuse scikit-learn and
7
7
sktime design principles in your project.
8
8
"""
9
- __version__ : str = "0.8.0 "
9
+ __version__ : str = "0.8.1 "
You can’t perform that action at this time.
0 commit comments