Skip to content

Commit 5a94f7b

Browse files
authored
Merge pull request #721 from jturner314/prepare-0.13.0
Prepare for 0.13.0 release
2 parents 5ab292d + a05e2d0 commit 5a94f7b

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "ndarray"
4-
version = "0.12.1"
4+
version = "0.13.0"
55
edition = "2018"
66
authors = [
77
"bluss",

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ How to use with cargo
7070
::
7171

7272
[dependencies]
73-
ndarray = "0.12.1"
73+
ndarray = "0.13.0"
7474

7575
How to enable blas integration. Depend on ``blas-src`` directly to pick a blas
7676
provider. Depend on the same ``blas-src`` version as ``ndarray`` does, for the
@@ -80,7 +80,7 @@ provider::
8080

8181

8282
[dependencies]
83-
ndarray = { version = "0.12.1", features = ["blas"] }
83+
ndarray = { version = "0.13.0", features = ["blas"] }
8484
blas-src = { version = "0.2.0", default-features = false, features = ["openblas"] }
8585
openblas-src = { version = "0.6.0", default-features = false, features = ["cblas", "system"] }
8686

RELEASES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Version 0.13.0 (in development)
2-
===============================
1+
Version 0.13.0
2+
==============
33

44
New features
55
------------

ndarray-rand/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description = "Constructors for randomized arrays. `rand` integration for `ndarr
1414
keywords = ["multidimensional", "matrix", "rand", "ndarray"]
1515

1616
[dependencies]
17-
ndarray = { version = "0.12.0", path = ".." }
17+
ndarray = { version = "0.13", path = ".." }
1818
rand_distr = "0.2.1"
1919

2020
[dependencies.rand]

parallel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ categories = ["data-structures", "science", "concurrency"]
1414

1515
[dependencies]
1616
rayon = { version = "1.0" }
17-
ndarray = { version = "0.12.0", path = "../" }
17+
ndarray = { version = "0.13", path = "../" }
1818

1919
[dev-dependencies]
2020
num_cpus = "1.2"

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// option. This file may not be copied, modified, or distributed
77
// except according to those terms.
88
#![crate_name = "ndarray"]
9-
#![doc(html_root_url = "https://docs.rs/ndarray/0.12/")]
9+
#![doc(html_root_url = "https://docs.rs/ndarray/0.13/")]
1010
#![allow(
1111
clippy::many_single_char_names,
1212
clippy::deref_addrof,
@@ -61,7 +61,7 @@
6161
//! needs matching memory layout to be efficient (with some exceptions).
6262
//! + Efficient floating point matrix multiplication even for very large
6363
//! matrices; can optionally use BLAS to improve it further.
64-
//! - **Requires Rust 1.32**
64+
//! - **Requires Rust 1.37 or later**
6565
//!
6666
//! ## Crate Feature Flags
6767
//!

0 commit comments

Comments
 (0)