diff --git a/docs/api/model-selection.md b/docs/api/model-selection.md index 2e6ee29c8..b9b6b3c90 100644 --- a/docs/api/model-selection.md +++ b/docs/api/model-selection.md @@ -1,16 +1,20 @@ # Model Selection -:::sklego.model_selection.GroupTimeSeriesSplit +:::sklego.model_selection.TimeGapSplit options: show_root_full_path: true show_root_heading: true -:::sklego.model_selection.KlusterFoldValidation +:::sklego.model_selection.GroupTimeSeriesSplit options: show_root_full_path: true show_root_heading: true -:::sklego.model_selection.TimeGapSplit +:::sklego.model_selection.ClusterFoldValidation options: show_root_full_path: true show_root_heading: true + +## `KlusterFoldValidation` + +Prior to `version 0.8.2`, the `ClusterFoldValidation` class was named `KlusterFoldValidation`. The old name is deprecated and will be removed in a future releases. diff --git a/pyproject.toml b/pyproject.toml index 9e11af6aa..e52c2d83f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "scikit-lego" -version = "0.8.1" +version = "0.8.2" description="A collection of lego bricks for scikit-learn pipelines" license = {file = "LICENSE"} diff --git a/sklego/model_selection.py b/sklego/model_selection.py index 28cbc9a53..4d52d817a 100644 --- a/sklego/model_selection.py +++ b/sklego/model_selection.py @@ -261,7 +261,7 @@ class ClusterFoldValidation: """Cross validator that creates folds based on provided cluster method. This ensures that data points in the same cluster are not split across different folds. - !!! info "New in version 0.9.0" + !!! info "New in version 0.8.2" Parameters ----------