diff --git a/README.md b/README.md index 3b7b83d7..beb0725d 100644 --- a/README.md +++ b/README.md @@ -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.10.1 is now available. Check out our +:rocket: Version 0.11.0 is now available. Check out our [release notes](https://skbase.readthedocs.io/en/latest/changelog.html). | Overview | | diff --git a/docs/source/_static/switcher.json b/docs/source/_static/switcher.json index 5e4f0d99..7201f85a 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.10.1 (stable)", + "name": "0.11.0 (stable)", + "version": "stable", + "url": "https://skbase.readthedocs.io/en/v0.11.0/" + }, + { + "name": "0.10.1", "version": "stable", "url": "https://skbase.readthedocs.io/en/v0.10.1/" }, diff --git a/docs/source/user_documentation/changelog.rst b/docs/source/user_documentation/changelog.rst index 0e033af2..6ffd48ba 100644 --- a/docs/source/user_documentation/changelog.rst +++ b/docs/source/user_documentation/changelog.rst @@ -14,10 +14,28 @@ You can also subscribe to ``skbase``'s For planned changes and upcoming releases, see our :ref:`roadmap`. +[0.11.0] - 2024-10-07 +===================== + +Maintenance release with full support for ``python 3.13``, +and other minor improvements. + +Contents +-------- + +* [MNT] full support for ``python 3.13`` (:pr:`372`) :user:`fkiraly` +* [DOC] improved docstrings for ``BaseObject`` (:pr:`369`) :user:`fkiraly` +* [DOC] merge docstring of ``NotFittedError`` with ``sktime`` + (:pr:`371`) :user:`fkiraly` +* [ENH] merge ``sktime`` ``BaseEstimator` into ``skbase`` ``BaseEstimator`` + (:pr:`370`) :user:`fkiraly` +* [pre-commit.ci] pre-commit autoupdate (:pr:`374`) :user:`pre-commit-ci` + + [0.10.1] - 2024-09-29 ===================== -Maintenance release with experimental python 3.13 wheels. +Maintenance release with experimental ``python 3.13`` wheels. Full 3.13 support will be added with ``scikit-base 0.11.0``. Contents @@ -26,7 +44,7 @@ Contents * [pre-commit.ci] pre-commit autoupdate (:pr:`364`) :user:`pre-commit-ci` * [MNT] updates ``scikit-learn`` soft dependency checks to use PEP 440 name (:pr:`366`) :user:`fkiraly` -* [MNT] experimental python ``3.13`` wheels and ``3.13-rc.2`` testing +* [MNT] experimental ``python 3.13`` wheels and ``3.13-rc.2`` testing (:pr:`365`) :user:`fkiraly` diff --git a/pyproject.toml b/pyproject.toml index a338fbc9..06c0b443 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "scikit-base" -version = "0.10.1" +version = "0.11.0" 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 ae310038..1b29446e 100644 --- a/skbase/__init__.py +++ b/skbase/__init__.py @@ -6,4 +6,4 @@ The included functionality makes it easy to reuse scikit-learn and sktime design principles in your project. """ -__version__: str = "0.10.1" +__version__: str = "0.11.0"