From 16585b1f75a6451237c8183d0e3d6e2d422c996a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Tue, 3 Oct 2023 16:12:40 +0200 Subject: [PATCH] v up --- docs/source/_static/switcher.json | 7 ++++++- docs/source/user_documentation/changelog.rst | 8 ++++++++ pyproject.toml | 2 +- skbase/__init__.py | 5 +---- 4 files changed, 16 insertions(+), 6 deletions(-) diff --git a/docs/source/_static/switcher.json b/docs/source/_static/switcher.json index 2aa00d91..a6993139 100644 --- a/docs/source/_static/switcher.json +++ b/docs/source/_static/switcher.json @@ -5,7 +5,12 @@ "url": "https://skbase.readthedocs.io/en/latest/" }, { - "name": "0.5.1 (stable)", + "name": "0.5.2 (stable)", + "version": "stable", + "url": "https://skbase.readthedocs.io/en/v0.5.2/" + }, + { + "name": "0.5.1", "version": "stable", "url": "https://skbase.readthedocs.io/en/v0.5.1/" }, diff --git a/docs/source/user_documentation/changelog.rst b/docs/source/user_documentation/changelog.rst index da112d1a..e6e29364 100644 --- a/docs/source/user_documentation/changelog.rst +++ b/docs/source/user_documentation/changelog.rst @@ -14,6 +14,14 @@ You can also subscribe to ``skbase``'s For planned changes and upcoming releases, see our :ref:`roadmap`. +[0.5.2] - 2023-10-03 +==================== + +Release with minor improvements and bugfixes. + + + + [0.5.1] - 2023-08-14 ==================== diff --git a/pyproject.toml b/pyproject.toml index bed49f3e..fb744d13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "scikit-base" -version = "0.5.1" +version = "0.5.2" description = "Base classes for sklearn-like parametric objects" authors = [ {name = "sktime developers", email = "sktime.toolbox@gmail.com"}, diff --git a/skbase/__init__.py b/skbase/__init__.py index 7fbf6055..ef39aa4e 100644 --- a/skbase/__init__.py +++ b/skbase/__init__.py @@ -8,7 +8,4 @@ """ from typing import List -__version__: str = "0.5.1" - -__author__: List[str] = ["fkiraly", "RNKuhns", "mloning"] -__all__: List[str] = [] +__version__: str = "0.5.2"