Skip to content

Commit 8b5af54

Browse files
authored
Merge pull request rust-ndarray#482 from jturner314/release
Release ndarray 0.12, ndarray-rand 0.8, and ndarray-parallel 0.9
2 parents 8d66134 + 0e77047 commit 8b5af54

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
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.11.2"
4+
version = "0.12.0"
55
authors = ["bluss"]
66
license = "MIT/Apache-2.0"
77
readme = "README-crates.io.md"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ provider::
8888
Recent Changes (ndarray)
8989
------------------------
9090

91-
- 0.12.0 (not yet released)
91+
- 0.12.0
9292

9393
- Add ``var_axis`` method for computing variance by @LukeMathWalker.
9494
- Add ``map_mut`` and ``map_axis_mut`` methods (mutable variants of ``map`` and ``map_axis``) by @LukeMathWalker.

ndarray-rand/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ndarray-rand"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["bluss"]
55
license = "MIT/Apache-2.0"
66

@@ -13,7 +13,7 @@ keywords = ["multidimensional", "matrix", "rand", "ndarray"]
1313

1414
[dependencies]
1515
rand = "0.5.0"
16-
ndarray = { version = "0.11.0", path = ".." }
16+
ndarray = { version = "0.12.0", path = ".." }
1717

1818
[package.metadata.release]
1919
no-dev-version = true

ndarray-rand/README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ ndarray-rand
44
Recent Changes
55
--------------
66

7-
- 0.8.0 (not yet released)
7+
- 0.8.0
88

9+
- Require ndarray 0.12
910
- Require rand 0.5
1011

1112
- 0.7.0

parallel/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ndarray-parallel"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["bluss"]
55
license = "MIT/Apache-2.0"
66

@@ -14,7 +14,7 @@ categories = ["data-structures", "science", "concurrency"]
1414

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

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

parallel/README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ How to use with cargo::
4949
Recent Changes (ndarray-parallel)
5050
---------------------------------
5151

52+
- 0.9.0
53+
54+
- Upgrade for ndarray 0.12.0
55+
5256
- 0.8.0
5357

5458
- Upgrade for rayon 1.0!

parallel/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
//! });
9393
//! }
9494
//! ```
95-
#![doc(html_root_url = "http://docs.rs/ndarray-parallel/0.7/")]
95+
#![doc(html_root_url = "http://docs.rs/ndarray-parallel/0.9/")]
9696

9797

9898
pub extern crate ndarray;

0 commit comments

Comments
 (0)