Skip to content

Commit 86605d5

Browse files
committed
Prepare for 0.13.0 release
1 parent 0446d5b commit 86605d5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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
------------

src/lib.rs

Lines changed: 1 addition & 1 deletion
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,

0 commit comments

Comments
 (0)