Skip to content

Commit

Permalink
Release 0.7.8 (#325)
Browse files Browse the repository at this point in the history
Release 0.7.8

* changelog
* version bump
  • Loading branch information
fkiraly authored May 10, 2024
1 parent 6451d2d commit 473cb9e
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 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.7 is now available. Check out our
:rocket: Version 0.7.8 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.7 (stable)",
"name": "0.7.8 (stable)",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.7.8/"
},
{
"name": "0.7.7",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.7.7/"
},
Expand Down
17 changes: 16 additions & 1 deletion docs/source/user_documentation/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,22 @@ You can also subscribe to ``skbase``'s

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

[0.7.7] - 2024-03-02
[0.7.8] - 2024-05-10
====================

Regular bugfix and maintenance release.

Contents
--------

* [BUG] safer comparison in ``deep_equals`` if ``np.any(x != y)`` does not result in
boolean (:pr:`323`) :user:`fkiraly`
* [pre-commit.ci] pre-commit autoupdate (:pr:`322`) :user:`dependabot`
* [MNT] [Dependabot](deps): Update ``sphinx-gallery`` requirement
from ``<0.16.0`` to ``<0.17.0`` (:pr:`321`) :user:`dependabot`


[0.7.7] - 2024-04-17
====================

Small hotfix release.
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.7"
version = "0.7.8"
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.7.7"
__version__: str = "0.7.8"

0 comments on commit 473cb9e

Please sign in to comment.