Skip to content

Commit

Permalink
Release 0.6.1 (#241)
Browse files Browse the repository at this point in the history
Release 0.6.1

* changelog
* version bump
  • Loading branch information
fkiraly authored Oct 26, 2023
1 parent e2271b5 commit bb49045
Show file tree
Hide file tree
Showing 5 changed files with 67 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.6.0 is now available. Check out our
:rocket: Version 0.6.1 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.6.0 (stable)",
"name": "0.6.1 (stable)",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.6.1/"
},
{
"name": "0.6.0",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.6.0/"
},
Expand Down
58 changes: 58 additions & 0 deletions docs/source/user_documentation/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,64 @@ You can also subscribe to ``skbase``'s

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

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

Highlights
----------

* ``set_params`` now recognizes unique suffixes as aliases
for full parameter strings, e.g., ``foo`` instead of
``estimator__component__foo`` (:pr:`229`) :user:`fkiraly`
* the ``deep_equals`` utility now admits custom plugins with dependency
isolation, e.g., for data types such as ``dask`` or ``polars``
(:pr:`238`) :user:`fkiraly`
* ``dependabot`` is now enabled for the ``skbase`` repository
(:pr:`228`) :user:`fkiraly`


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

* ``set_params`` now recognizes unique suffixes as aliases
for full parameter strings. This change is not breaking as behaviour
changes only in cases where previously exceptions were raised.

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

* [ENH] ``set_params`` to recognize unique suffixes as aliases
for full parameter string (:pr:`229`) :user:`fkiraly`
* [ENH] refactor string coercions and return logic in ``deep_equals`` utility
(:pr:`237`) :user:`fkiraly`
* [ENH] improved ``deep_equals`` utility - plugins for custom types
(:pr:`238`) :user:`fkiraly`
* [ENH] informative failure message in
``test_get_package_metadata_returns_expected_results`` (:pr:`239`) :user:`fkiraly`

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

* [MNT] activate ``dependabot`` for version updates and maintenance
(:pr:`228`) :user:`fkiraly`
* [MNT] [Dependabot](deps): Bump actions/upload-artifact from 2 to 3
(:pr:`230`) :user:`dependabot`
* [MNT] [Dependabot](deps): Bump actions/dependency-review-action from 1 to 3
(:pr:`231`) :user:`dependabot`
* [MNT] [Dependabot](deps): Bump actions/checkout from 3 to 4
(:pr:`232`) :user:`dependabot`
* [MNT] [Dependabot](deps): Bump actions/download-artifact from 2 to 3
(:pr:`233`) :user:`dependabot`
* [MNT] [Dependabot](deps): Bump styfle/cancel-workflow-action from 0.9.1 to 0.12.0
(:pr:`234`) :user:`dependabot`

Fixes
-----

* [BUG] correct parameter name in ``TestAllObjects`` ``all_objects`` call
(:pr:`236`) :user:`fkiraly`


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

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.6.0"
version = "0.6.1"
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.6.0"
__version__: str = "0.6.1"

0 comments on commit bb49045

Please sign in to comment.