From ec8ae9a6dfb3e926dbfc0f9ba7d645d754dbe80f Mon Sep 17 00:00:00 2001 From: tom-whitehead <99190557+tom-whitehead@users.noreply.github.com> Date: Fri, 11 Oct 2024 20:08:49 +0100 Subject: [PATCH] Release (#30) --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26bd84f..4439b22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# Version 0.8.2 2024-10-11 +## Changes +- Fix for a bug that occurred when `allow_single_cluster` was set to true. If you want to run clustering with + this hyper parameter set to true, then it is strongly recommended that you use this version or higher. +- Cluster centers for geographical clusters. + # Version 0.8.1 2024-09-18 ## Changes - Consistency in cluster labels between runs of the algorithm. If you ran clustering on the same data numerous times, diff --git a/Cargo.toml b/Cargo.toml index 3d575e2..7e45f94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hdbscan" -version = "0.8.1" +version = "0.8.2" edition = "2021" authors = [ "Tom Whitehead ", ] description = "HDBSCAN clustering in pure Rust. A huge improvement on DBSCAN, capable of identifying clusters of varying densities."