Skip to content

Commit

Permalink
Release 0.8.3 (#354)
Browse files Browse the repository at this point in the history
Release 0.8.3

* changelog
* version bump
  • Loading branch information
fkiraly authored Aug 23, 2024
1 parent 2d6dcfe commit d81a395
Show file tree
Hide file tree
Showing 5 changed files with 34 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.8.2 is now available. Check out our
:rocket: Version 0.8.3 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.8.2 (stable)",
"name": "0.8.3 (stable)",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.8.3/"
},
{
"name": "0.8.2",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.8.2/"
},
Expand Down
25 changes: 25 additions & 0 deletions docs/source/user_documentation/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,31 @@ You can also subscribe to ``skbase``'s

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

[0.8.3] - 2024-08-23
====================

Regular maintenance release.

Contents
--------

* [MNT] release workflow: Upgrade deprecated pypa action parameter
(:pr:`349`) :user:`szepeviktor`
* [MNT] pre-commit autoupdate by (:pr:`353`) :user:`pre-commit-ci`
* [ENH] StderrMute context manager (:pr:`350`) :user:`XinyuWuu`
* [BUG] fix dependency checkers in case of multiple distributions available in
environment, e.g., on databricks (:pr:`352`) :user:`fkiraly`, :user:`toandaominh1997`
* [ENH] safer ``get_fitted_params`` default functionality to avoid exception
on ``getattr`` (:pr:`353`) :user:`fkiraly`

Contributors
------------

:user:`fkiraly`,
:user:`szepeviktor`,
:user:`toandaominh1997`,
:user:`yarnabrina`


[0.8.2] - 2024-08-02
====================
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.8.2"
version = "0.8.3"
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.8.2"
__version__: str = "0.8.3"

0 comments on commit d81a395

Please sign in to comment.