Skip to content

Commit

Permalink
Release 0.6.2 (#255)
Browse files Browse the repository at this point in the history
Release 0.6.2

* changelog
* version bump
  • Loading branch information
fkiraly committed Dec 30, 2023
1 parent b2b1826 commit 09b94e3
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 3 deletions.
7 changes: 6 additions & 1 deletion docs/source/_static/switcher.json
Expand Up @@ -5,7 +5,12 @@
"url": "https://skbase.readthedocs.io/en/latest/"
},
{
"name": "0.6.1 (stable)",
"name": "0.6.2 (stable)",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.6.2/"
},
{
"name": "0.6.1",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.6.1/"
},
Expand Down
41 changes: 41 additions & 0 deletions docs/source/user_documentation/changelog.rst
Expand Up @@ -14,6 +14,47 @@ You can also subscribe to ``skbase``'s

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


[0.6.2] - 2023-12-30
====================

Release with minor improvements and bugfixes.

Enhancements
------------

* [ENH] ``deep_equals`` - clearer return on diffs from ``dtypes`` and ``index``,
relaxation of ``MultiIndex`` equality check (:pr:`246`) :user:`fkiraly`

Fixes
-----

* [BUG] ensure ``deep_equals`` plugins are passed on to all recursions
(:pr:`243`) :user:`fkiraly`

Documentation
-------------

* [DOC] Fixed spelling mistakes as identified by ``codespell`` and ``typos``
(:pr:`245`) :user:`yarnabrina`

Maintenance
-----------

* [MNT] [Dependabot](deps-dev): Update sphinx-gallery requirement
from ``<0.15.0`` to ``<0.16.0`` (:pr:`247`) :user:`dependabot`
* [MNT] [Dependabot](deps): Bump actions/setup-python from 4 to 5
(:pr:`250`) :user:`dependabot`
* [MNT] [Dependabot](deps): Bump conda-incubator/setup-miniconda from 2 to 3
(:pr:`249`) :user:`dependabot`
* [MNT] [Dependabot](deps): Bump github/codeql-action from 2 to 3
(:pr:`252`) :user:`dependabot`
* [MNT] [Dependabot](deps): Bump actions/download-artifact from 3 to 4
(:pr:`253`) :user:`dependabot`
* [MNT] [Dependabot](deps): Bump actions/upload-artifact from 3 to 4
(:pr:`254`) :user:`dependabot`


[0.6.1] - 2023-10-26
====================

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "scikit-base"
version = "0.6.1"
version = "0.6.2"
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
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.6.1"
__version__: str = "0.6.2"

0 comments on commit 09b94e3

Please sign in to comment.