Skip to content

Commit 1b5d4a8

Browse files
author
Franz Király
authored
Release 0.6.0 (#223)
Release 0.6.0 * changelog * version bump
1 parent 8ecc8e8 commit 1b5d4a8

File tree

5 files changed

+39
-4
lines changed

5 files changed

+39
-4
lines changed

Diff for: README.md

+1-1
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.5.2 is now available. Checkout our
10+
:rocket: Version 0.6.0 is now available. Check out our
1111
[release notes](https://skbase.readthedocs.io/en/latest/changelog.html).
1212

1313
| Overview | |

Diff for: docs/source/_static/switcher.json

+6-1
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.5.2 (stable)",
8+
"name": "0.6.0 (stable)",
9+
"version": "stable",
10+
"url": "https://skbase.readthedocs.io/en/v0.6.0/"
11+
},
12+
{
13+
"name": "0.5.2",
914
"version": "stable",
1015
"url": "https://skbase.readthedocs.io/en/v0.5.2/"
1116
},

Diff for: docs/source/user_documentation/changelog.rst

+30
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,36 @@ You can also subscribe to ``skbase``'s
1414

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

17+
[0.6.0] - 2023-10-05
18+
====================
19+
20+
Maintenance release at python 3.12 release.
21+
22+
Adds support for python 3.12.
23+
24+
Dependency changes
25+
------------------
26+
27+
* ``skbase`` now supports python 3.12.
28+
29+
Deprecations and removals
30+
-------------------------
31+
32+
* the ``deep_equals`` utility has moved to ``skbase.utils.deep_equals``.
33+
The old location in ``skbase.testing.utils.deep_equals`` has now been removed.
34+
35+
Contents
36+
--------
37+
38+
* [MNT] address deprecation of ``load_module`` in ``python 3.12``
39+
(:pr:`190`) :user:`fkiraly`
40+
* [MNT] simplify test CI and remove ``conda`` (:pr:`224`) :user:`fkiraly`
41+
* [MNT] update dependency versions in ``doc`` dependency set and set upper bounds
42+
(:pr:`226`, :pr:`227`) :user:`fkiraly`
43+
* [MNT] update ``python`` version to 3.12 (:pr:`221`) :user:`fkiraly`
44+
* [MNT] 0.6.0 deprecation actions (:pr:`225`) :user:`fkiraly`
45+
46+
1747
[0.5.2] - 2023-10-03
1848
====================
1949

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "scikit-base"
3-
version = "0.5.2"
3+
version = "0.6.0"
44
description = "Base classes for sklearn-like parametric objects"
55
authors = [
66
{name = "sktime developers", email = "[email protected]"},

Diff for: skbase/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
The included functionality makes it easy to re-use scikit-learn and
77
sktime design principles in your project.
88
"""
9-
__version__: str = "0.5.2"
9+
__version__: str = "0.6.0"

0 commit comments

Comments
 (0)