diff --git a/docs/source/_static/switcher.json b/docs/source/_static/switcher.json index 6113d840..d4095a9b 100644 --- a/docs/source/_static/switcher.json +++ b/docs/source/_static/switcher.json @@ -4,6 +4,11 @@ "version": "latest", "url": "https://skpro.readthedocs.io/en/latest/" }, + { + "name": "2.0.1 (stable)", + "version": "stable", + "url": "https://skpro.readthedocs.io/en/v2.0.1/" + } { "name": "2.0.0", "version": "v2.0.0", diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index aeca5f6c..372f7fdf 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -14,6 +14,38 @@ You can also subscribe to ``skpro``'s For planned changes and upcoming releases, see our :ref:`roadmap`. +[2.0.1] - 2023-10-08 +==================== + +Release with minor maintenance actions and enhancements. + +Enhancements +------------ + +* [ENH] basic "test all estimators" suite (:pr:`89`) :user:`fkiraly` + +Documentation +------------- + +* [DOC] improvements to notebook 1 (:pr:`106`) :user:`fkiraly` + +Maintenance +----------- + +* [MNT] address deprecation of ``skbase.testing.utils.deep_equals`` (:pr:`111`) :user:`fkiraly` +* [MNT] activate ``dependabot`` for version updates and maintenance (:pr:`110`) :user:`fkiraly` +* [MNT] [Dependabot](deps): Bump styfle/cancel-workflow-action from 0.9.1 to 0.12.0 + (:pr:`113`) :user:`dependabot` +* [MNT] [Dependabot](deps): Bump actions/dependency-review-action from 1 to 3 + (:pr:`114`) :user:`dependabot` +* [MNT] [Dependabot](deps): Bump actions/checkout from 3 to 4 + (:pr:`115`) :user:`dependabot` +* [MNT] [Dependabot](deps): Bump actions/download-artifact from 2 to 3 + (:pr:`116`) :user:`dependabot` +* [MNT] [Dependabot](deps): Bump actions/upload-artifact from 2 to 3 + (:pr:`117`) :user:`dependabot` + + [2.0.0] - 2023-09-13 ==================== diff --git a/pyproject.toml b/pyproject.toml index 21cb1145..6c9a2762 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "skpro" -version = "2.0.0" +version = "2.0.1" description = "A unified framework for probability distributions and probabilistic supervised regression" authors = [ {name = "skpro developers", email = "sktime.toolbox@gmail.com"}, diff --git a/skpro/__init__.py b/skpro/__init__.py index 86e38242..1d22467a 100644 --- a/skpro/__init__.py +++ b/skpro/__init__.py @@ -1,6 +1,6 @@ """skpro.""" -__version__ = "2.0.0" +__version__ = "2.0.1" __all__ = ["show_versions"]