Skip to content

Commit

Permalink
Release 0.21.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gbolmier committed Jul 8, 2024
1 parent acaf678 commit 112bb18
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
11 changes: 11 additions & 0 deletions docs/releases/0.21.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 0.21.2 - 2024-07-08

This release makes Polars an optional dependency instead of a required one.

## cluster

- Added `ODAC` (Online Divisive-Agglomerative Clustering) for clustering time series.

## forest

- Fix error in `forest.ARFClassifer` and `forest.ARFRegressor` where the algorithms would crash in case the number of features available for learning went below the value of the `max_features` parameter (#1560).
10 changes: 0 additions & 10 deletions docs/releases/unreleased.md
Original file line number Diff line number Diff line change
@@ -1,11 +1 @@
# Unreleased

This release makes Polars an optional dependency instead of a required one.

## cluster

- Added `ODAC` (Online Divisive-Agglomerative Clustering) for clustering time series.

## forest

- Fix error in `forest.ARFClassifer` and `forest.ARFRegressor` where the algorithms would crash in case the number of features available for learning went below the value of the `max_features` parameter (#1560).
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "river"
version = "0.21.1"
version = "0.21.2"
description = "Online machine learning in Python"
readme = "README.md"
homepage = "https://riverml.xyz/"
Expand Down
2 changes: 1 addition & 1 deletion river/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import annotations

__version__ = "0.21.1"
__version__ = "0.21.2"

0 comments on commit 112bb18

Please sign in to comment.