Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
fkiraly committed Aug 14, 2023
1 parent 9fbe066 commit a269d46
Show file tree
Hide file tree
Showing 4 changed files with 9 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.5.0 is now available. Checkout our
:rocket: Version 0.5.1 is now available. Checkout 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.5.0 (stable)",
"name": "0.5.1 (stable)",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.5.1/"
},
{
"name": "0.5.0",
"version": "stable",
"url": "https://skbase.readthedocs.io/en/v0.5.0/"
},
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.5.0"
version = "0.5.1"
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 @@ -8,7 +8,7 @@
"""
from typing import List

__version__: str = "0.5.0"
__version__: str = "0.5.1"

__author__: List[str] = ["fkiraly", "RNKuhns", "mloning"]
__all__: List[str] = []

0 comments on commit a269d46

Please sign in to comment.