Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.6.0 #223

Merged
merged 8 commits into from
Oct 4, 2023
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 0.5.2 is now available. Checkout our
:rocket: Version 0.6.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.5.2 (stable)",
"name": "0.6.0 (stable)",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.6.0/"
},
{
"name": "0.5.2",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.5.2/"
},
Expand Down
30 changes: 30 additions & 0 deletions docs/source/user_documentation/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,36 @@ You can also subscribe to ``skbase``'s

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

[0.6.0] - 2023-10-05
====================

Maintenance release at python 3.12 release.

Adds support for python 3.12.

Dependency changes
------------------

* ``skbase`` now supports python 3.12.

Deprecations and removals
-------------------------

* the ``deep_equals`` utility has moved to ``skbase.utils.deep_equals``.
The old location in ``skbase.testing.utils.deep_equals`` has now been removed.

Contents
--------

* [MNT] address deprecation of ``load_module`` in ``python 3.12``
(:pr:`190`) :user:`fkiraly`
* [MNT] simplify test CI and remove ``conda`` (:pr:`224`) :user:`fkiraly`
* [MNT] update dependency versions in ``doc`` dependency set and set upper bounds
(:pr:`226`, :pr:`227`) :user:`fkiraly`
* [MNT] update ``python`` version to 3.12 (:pr:`221`) :user:`fkiraly`
* [MNT] 0.6.0 deprecation actions (:pr:`225`) :user:`fkiraly`


[0.5.2] - 2023-10-03
====================

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.5.2"
version = "0.6.0"
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 @@ -6,4 +6,4 @@
The included functionality makes it easy to re-use scikit-learn and
sktime design principles in your project.
"""
__version__: str = "0.5.2"
__version__: str = "0.6.0"