Skip to content

Commit

Permalink
v bump
Browse files Browse the repository at this point in the history
  • Loading branch information
fkiraly committed Nov 13, 2024
1 parent badd7d4 commit 5820907
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 4 deletions.
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 0.11.0 is now available. Check out our
:rocket: Version 0.12.0 is now available. Check out our
[release notes](https://skbase.readthedocs.io/en/latest/changelog.html).

| Overview | |
Expand Down
7 changes: 6 additions & 1 deletion docs/source/_static/switcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
"url": "https://skbase.readthedocs.io/en/latest/"
},
{
"name": "0.11.0 (stable)",
"name": "0.12.0 (stable)",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.12.0/"
},
{
"name": "0.11.0",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.11.0/"
},
Expand Down
21 changes: 21 additions & 0 deletions docs/source/user_documentation/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,27 @@ You can also subscribe to ``skbase``'s

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

[0.12.0] - 2024-11-13
=====================

Feature release.

Core interface changes
----------------------

* the logic of ``clone`` has been refactored to a type-based plugin architecture,
with plugins inheriting from ``BaseCloner``. The default behaviour of ``clone``
remains unchanged, and a new plugin for ``scikit-learn`` estimators has been added,
dispatching to ``sklearn`` ``clone``. This change is not breaking, and it fixes
some reported bugs around ``sklearn`` config handling.
* ``clone`` plugins can be customized by extenders by overriding the
``_get_clone_plugins`` method, which can return a list of ``BaseCloner`` classes,
functioning as plugins.

Contents
--------


[0.11.0] - 2024-10-07
=====================

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 = "0.11.0"
version = "0.12.0"
description = "Base classes for sklearn-like parametric objects"
authors = [
{name = "sktime developers", email = "[email protected]"},
Expand Down
2 changes: 1 addition & 1 deletion skbase/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
The included functionality makes it easy to reuse scikit-learn and
sktime design principles in your project.
"""
__version__: str = "0.11.0"
__version__: str = "0.12.0"

0 comments on commit 5820907

Please sign in to comment.