From 11039de06cddfabf92c714fe580bd99bceae0f56 Mon Sep 17 00:00:00 2001 From: Rouven Spreckels Date: Sun, 28 May 2023 18:48:31 +0200 Subject: [PATCH] Prepare release. --- Cargo.toml | 2 +- RELEASES.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4591dd9..c180b67 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ndarray-slice" -version = "0.2.2" +version = "0.2.3" rust-version = "1.60" edition = "2021" authors = ["Rouven Spreckels "] diff --git a/RELEASES.md b/RELEASES.md index 111e8aa..d6564f4 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,9 @@ +# Version 0.2.3 (2023-05-28) + + * Lower worst-case time complexity from **O**(**n** log **n**) to **O**(**n**) + for selection algorithms. + * Improve overall sorting performance. + # Version 0.2.2 (2023-04-13) * Add `rayon` feature for parallel sorting and parallel bulk-selection.