Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version bump + changelog #34

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Version 0.8.3 2024-10-15
## Changes
- Fix for a bug that occurred when `allow_single_cluster` was set to true and the root cluster is the only one
potential cluster. This previously caused a panic, but could only be triggered for very small datasets.

# 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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdbscan"
version = "0.8.2"
version = "0.8.3"
edition = "2021"
authors = [ "Tom Whitehead <[email protected]>", ]
description = "HDBSCAN clustering in pure Rust. A huge improvement on DBSCAN, capable of identifying clusters of varying densities."
Expand Down
Loading