Skip to content

Commit

Permalink
Release 0.7.2 (#278)
Browse files Browse the repository at this point in the history
Release 0.7.2

* changelog
* version bump
  • Loading branch information
fkiraly authored Jan 31, 2024
1 parent 5ada384 commit 306958d
Show file tree
Hide file tree
Showing 5 changed files with 63 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.7.1 is now available. Check out our
:rocket: Version 0.7.2 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.7.1 (stable)",
"name": "0.7.2 (stable)",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.7.2/"
},
{
"name": "0.7.1",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.7.1/"
},
Expand Down
54 changes: 54 additions & 0 deletions docs/source/user_documentation/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,60 @@ You can also subscribe to ``skbase``'s

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


[0.7.2] - 2023-01-31
====================

Feature and bugfix release.

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

* all ``BaseObject`` descendants now possess a method ``set_random_state``.
This can be used for nested setting of ``random_state`` variables,
and is useful for ensuring reproducibility in nested estimators.
(:pr:`268`) :user:`fkiraly`
* ``all_objects`` now supports filtering for list-valued tags in ``filter_tags``
as a convenience feature.
When the query value is a single value or a list, the filter condition is
that the tag value and the query value have at least one element in common.
(:pr:`273`) :user:`fkiraly`

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

* [ENH] ``all_objects`` ``filter_tags`` to function with list-of tags
(:pr:`273`) :user:`fkiraly`
* [ENH] Random state handling, ``set_random_state`` method (:pr:`268`) :user:`fkiraly`

Fixes
-----

* [BUG] Fix cloning of config for nested objects (:pr:`276`) :user:`tpvasconcelos`

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

* [DOC] lint changelog (:pr:`267`) :user:`fkiraly`

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

* [pre-commit.ci] pre-commit autoupdate (:pr:`274`) :user:`precommit-ci`
* [MNT] [Dependabot](deps): Bump ``actions/dependency-review-action`` from 3 to 4
(:pr:`269`) :user:`dependabot`
* [MNT] [Dependabot](deps-dev): Update ``sphinx-issues`` requirement
from ``<4.0.0`` to ``<5.0.0`` (:pr:`271`) :user:`dependabot`
* [MNT] [Dependabot](deps): Bump styfle/cancel-workflow-action
from ``0.12.0`` to ``0.12.1`` (:pr:`272`) :user:`dependabot`
* [MNT] Add common IDE files to ``.gitignore`` (:pr:`277`) :user:`tpvasconcelos`

Contributors
------------
:user:`fkiraly`,
:user:`tpvasconcelos`


[0.7.1] - 2023-01-12
====================

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.7.1"
version = "0.7.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
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.7.1"
__version__: str = "0.7.2"

0 comments on commit 306958d

Please sign in to comment.