Skip to content

Commit ff3625c

Browse files
committed
Update dependencies, bump MSRV, prepare release.
1 parent e40e54d commit ff3625c

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: toolchain
1515
uses: actions-rs/toolchain@v1
1616
with:
17-
toolchain: 1.60.0
17+
toolchain: 1.63.0
1818
profile: minimal
1919
components: rustfmt, rust-docs, clippy
2020
override: true

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ndarray-slice"
3-
version = "0.2.3"
4-
rust-version = "1.60"
3+
version = "0.2.4"
4+
rust-version = "1.63.0"
55
edition = "2021"
66
authors = ["Rouven Spreckels <[email protected]>"]
77
description = """Fast and robust slice-based algorithms (e.g., sorting, selection, search)
@@ -37,7 +37,7 @@ rustdoc-args = ["--cfg", "docsrs"]
3737

3838
[dependencies]
3939
ndarray = { version = "0.15.6", default-features = false }
40-
rayon = { version = "1.7.0", optional = true }
40+
rayon = { version = "1.8.1", optional = true }
4141

4242
[dev-dependencies]
4343
quickcheck = "1.0.3"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[Documentation]: https://docs.rs/ndarray-slice/badge.svg
1212
[Downloads]: https://img.shields.io/crates/d/ndarray-slice.svg
1313
[Version]: https://img.shields.io/crates/v/ndarray-slice.svg
14-
[Rust]: https://img.shields.io/badge/rust-v1.60-brightgreen.svg
14+
[Rust]: https://img.shields.io/badge/rust-v1.63.0-brightgreen.svg
1515
[License]: https://img.shields.io/badge/License-MIT%20OR%20Apache--2.0-blue.svg
1616

1717
Fast and robust slice-based algorithms (e.g., [sorting], [selection], [search]) for

RELEASES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
# Version 0.2.4 (2024-01-23)
2+
3+
* Slightly improve performance of unstable sorting.
4+
15
# Version 0.2.3 (2023-05-28)
26

3-
* Lower worst-case time complexity from **O**(**n** log **n**) to **O**(**n**)
7+
* Lower worst-case time complexity from *O*(*n* log *n*) to *O*(*n*)
48
for selection algorithms.
59
* Improve overall sorting performance.
610

0 commit comments

Comments
 (0)