From 06d87132c9e83dc8cbdf75f9cea23505a2b17779 Mon Sep 17 00:00:00 2001 From: Adam Kern Date: Tue, 14 Oct 2025 08:40:35 -0400 Subject: [PATCH 1/2] chore: Release --- Cargo.lock | 2 +- Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 057a36d03..b82cbe288 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -457,7 +457,7 @@ dependencies = [ [[package]] name = "ndarray" -version = "0.16.1" +version = "0.17.0" dependencies = [ "approx", "cblas-sys", diff --git a/Cargo.toml b/Cargo.toml index bdac749c8..0223226db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ndarray" -version = "0.16.1" +version = "0.17.0" edition = "2021" rust-version = "1.64" authors = [ @@ -87,7 +87,7 @@ default-members = [ ] [workspace.dependencies] -ndarray = { version = "0.16", path = ".", default-features = false } +ndarray = { version = "0.17", path = ".", default-features = false } ndarray-rand = { path = "ndarray-rand" } ndarray-gen = { path = "crates/ndarray-gen" } From f59c3ad527dc238c051d530818ac39630a01e9e7 Mon Sep 17 00:00:00 2001 From: Adam Kern Date: Tue, 14 Oct 2025 17:46:54 -0400 Subject: [PATCH 2/2] Change release date on 0.17.0 in RELEASES.md --- RELEASES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index b94ef88f0..1f78a4ce7 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,4 +1,4 @@ -Version 0.17.0 (2025-10-13) +Version 0.17.0 (2025-10-14) =========================== Version 0.17.0 introduces a new **array reference type** — the preferred way to write functions and extension traits in `ndarray`. This release is fully backwards-compatible but represents a major usability improvement.