Skip to content

Commit

Permalink
Merge pull request #721 from jturner314/prepare-0.13.0
Browse files Browse the repository at this point in the history
Prepare for 0.13.0 release
  • Loading branch information
bluss committed Sep 23, 2019
2 parents 5ab292d + a05e2d0 commit 5a94f7b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "ndarray"
version = "0.12.1"
version = "0.13.0"
edition = "2018"
authors = [
"bluss",
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"] }

Expand Down
4 changes: 2 additions & 2 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Version 0.13.0 (in development)
===============================
Version 0.13.0
==============

New features
------------
Expand Down
2 changes: 1 addition & 1 deletion ndarray-rand/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion parallel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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
//!
Expand Down

0 comments on commit 5a94f7b

Please sign in to comment.