Skip to content

Commit df7d643

Browse files
committed
version 0.3.2
1 parent d096996 commit df7d643

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
For changes to the main Rust package, please see <https://github.com/kno10/rust-kmedoids/blob/main/CHANGELOG.md>
44

5+
## kmedoids 0.3.2 (2022-06-25)
6+
7+
- Rust: small bug fix in PAM BUILD (noticable for tiny data sets with large k only)
8+
- Rust: return less than k centers in BUILD if the total deviation already is 0 (less than k unique points)
9+
- documentation improvement and packaging improvements in Python bindings
10+
511
## kmedoids 0.3.1 (2022-04-05)
612

713
- fix missing import of warnings on bad parameters

Cargo.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "kmedoids"
4-
version = "0.3.1"
4+
version = "0.3.2"
55
authors = ["Erich Schubert <erich.schubert@tu-dortmund.de>", "Lars Lenssen <lars.lenssen@tu-dortmund.de>"]
66
description = "k-Medoids clustering with the FasterPAM algorithm"
77
homepage = "https://github.com/kno10/python-kmedoids"
@@ -14,17 +14,14 @@ name = "kmedoids"
1414
crate-type = ["cdylib"]
1515

1616
[dependencies]
17-
rustkmedoids = { version = "0.3.0", package = "kmedoids", git = "https://github.com/kno10/rust-kmedoids" }
17+
rustkmedoids = { version = "0.3.2", package = "kmedoids", git = "https://github.com/kno10/rust-kmedoids" }
1818
numpy = "0.16"
1919
ndarray = "0.15"
2020
rand = "0.8"
2121
rayon = "1.5"
22-
# crossbeam is transitive via rayon, avoid a yanked version warning:
23-
# with rayon-core 1.9.2 this can likely be removed
24-
crossbeam-utils = {version = "0.8.8", optional = true}
2522

2623
[dependencies.pyo3]
27-
version = "0.16.2"
24+
version = "0.16.5"
2825
features = ["extension-module"]
2926

3027
[package.metadata.maturin]

0 commit comments

Comments
 (0)