From 86605d5d189acd77bd0bcaf44b23585644a60e2d Mon Sep 17 00:00:00 2001 From: Jim Turner Date: Thu, 19 Sep 2019 20:40:59 -0400 Subject: [PATCH 1/3] Prepare for 0.13.0 release --- Cargo.toml | 2 +- README.rst | 4 ++-- RELEASES.md | 4 ++-- src/lib.rs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bc4145a3a..094c13f16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ndarray" -version = "0.12.1" +version = "0.13.0" edition = "2018" authors = [ "bluss", diff --git a/README.rst b/README.rst index 0d5c2cd3f..e551987c0 100644 --- a/README.rst +++ b/README.rst @@ -70,7 +70,7 @@ How to use with cargo :: [dependencies] - ndarray = "0.12.1" + ndarray = "0.13.0" How to enable blas integration. Depend on ``blas-src`` directly to pick a blas provider. Depend on the same ``blas-src`` version as ``ndarray`` does, for the @@ -80,7 +80,7 @@ provider:: [dependencies] - ndarray = { version = "0.12.1", features = ["blas"] } + ndarray = { version = "0.13.0", features = ["blas"] } blas-src = { version = "0.2.0", default-features = false, features = ["openblas"] } openblas-src = { version = "0.6.0", default-features = false, features = ["cblas", "system"] } diff --git a/RELEASES.md b/RELEASES.md index 77b98b088..e6d290c64 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,5 @@ -Version 0.13.0 (in development) -=============================== +Version 0.13.0 +============== New features ------------ diff --git a/src/lib.rs b/src/lib.rs index 18d0938cc..cea065581 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. #![crate_name = "ndarray"] -#![doc(html_root_url = "https://docs.rs/ndarray/0.12/")] +#![doc(html_root_url = "https://docs.rs/ndarray/0.13/")] #![allow( clippy::many_single_char_names, clippy::deref_addrof, From 4891a9b17ef7871a9e98baa79d31a86d11e29bc5 Mon Sep 17 00:00:00 2001 From: bluss Date: Fri, 20 Sep 2019 17:16:39 +0200 Subject: [PATCH 2/3] MAINT: Bump ndarray to 0.13 in parallel/ and ndarray-rand/ --- ndarray-rand/Cargo.toml | 2 +- parallel/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ndarray-rand/Cargo.toml b/ndarray-rand/Cargo.toml index 08495560d..c95662781 100644 --- a/ndarray-rand/Cargo.toml +++ b/ndarray-rand/Cargo.toml @@ -14,7 +14,7 @@ description = "Constructors for randomized arrays. `rand` integration for `ndarr keywords = ["multidimensional", "matrix", "rand", "ndarray"] [dependencies] -ndarray = { version = "0.12.0", path = ".." } +ndarray = { version = "0.13", path = ".." } rand_distr = "0.2.1" [dependencies.rand] diff --git a/parallel/Cargo.toml b/parallel/Cargo.toml index 9eb8e231e..14d4abbcc 100644 --- a/parallel/Cargo.toml +++ b/parallel/Cargo.toml @@ -14,7 +14,7 @@ categories = ["data-structures", "science", "concurrency"] [dependencies] rayon = { version = "1.0" } -ndarray = { version = "0.12.0", path = "../" } +ndarray = { version = "0.13", path = "../" } [dev-dependencies] num_cpus = "1.2" From a05e2d0ce8a3faa1d081311c72dd99c292bb1f51 Mon Sep 17 00:00:00 2001 From: bluss Date: Fri, 20 Sep 2019 17:19:57 +0200 Subject: [PATCH 3/3] DOC: Update min rust version in crate docs. Rustdoc is a good place for the minimum rust version, because that way this minimum rust version information is versioned (per crate version) on docs.rs --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index cea065581..38afdfd39 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -61,7 +61,7 @@ //! needs matching memory layout to be efficient (with some exceptions). //! + Efficient floating point matrix multiplication even for very large //! matrices; can optionally use BLAS to improve it further. -//! - **Requires Rust 1.32** +//! - **Requires Rust 1.37 or later** //! //! ## Crate Feature Flags //!