Skip to content

Commit

Permalink
Update dependencies, bump MSRV, prepare release.
Browse files Browse the repository at this point in the history
  • Loading branch information
n3vu0r committed Jan 23, 2024
1 parent e40e54d commit ff3625c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.60.0
toolchain: 1.63.0
profile: minimal
components: rustfmt, rust-docs, clippy
override: true
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ndarray-slice"
version = "0.2.3"
rust-version = "1.60"
version = "0.2.4"
rust-version = "1.63.0"
edition = "2021"
authors = ["Rouven Spreckels <[email protected]>"]
description = """Fast and robust slice-based algorithms (e.g., sorting, selection, search)
Expand Down Expand Up @@ -37,7 +37,7 @@ rustdoc-args = ["--cfg", "docsrs"]

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

[dev-dependencies]
quickcheck = "1.0.3"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[Documentation]: https://docs.rs/ndarray-slice/badge.svg
[Downloads]: https://img.shields.io/crates/d/ndarray-slice.svg
[Version]: https://img.shields.io/crates/v/ndarray-slice.svg
[Rust]: https://img.shields.io/badge/rust-v1.60-brightgreen.svg
[Rust]: https://img.shields.io/badge/rust-v1.63.0-brightgreen.svg
[License]: https://img.shields.io/badge/License-MIT%20OR%20Apache--2.0-blue.svg

Fast and robust slice-based algorithms (e.g., [sorting], [selection], [search]) for
Expand Down
6 changes: 5 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Version 0.2.4 (2024-01-23)

* Slightly improve performance of unstable sorting.

# Version 0.2.3 (2023-05-28)

* Lower worst-case time complexity from **O**(**n** log **n**) to **O**(**n**)
* Lower worst-case time complexity from *O*(*n* log *n*) to *O*(*n*)
for selection algorithms.
* Improve overall sorting performance.

Expand Down

0 comments on commit ff3625c

Please sign in to comment.