8000 Release ndarray 0.12, ndarray-rand 0.8, and ndarray-parallel 0.9 by jturner314 · Pull Request #482 · rust-ndarray/ndarray · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml 10BC0
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "ndarray"
version = "0.11.2"
version = "0.12.0"
authors = ["bluss"]
license = "MIT/Apache-2.0"
readme = "README-crates.io.md"
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ provider::
Recent Changes (ndarray)
------------------------

- 0.12.0 (not yet released)
- 0.12.0

- Add ``var_axis`` method for computing variance by @LukeMathWalker.
- Add ``map_mut`` and ``map_axis_mut`` methods (mutable variants of ``map`` and ``map_axis``) by @LukeMathWalker.
Expand Down
4 changes: 2 additions & 2 deletions ndarray-rand/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ndarray-rand"
version = "0.7.0"
version = "0.8.0"
authors = ["bluss"]
license = "MIT/Apache-2.0"

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

[dependencies]
rand = "0.5.0"
ndarray = { version = "0.11.0", path = ".." }
ndarray = { version = "0.12.0", path = ".." }

[package.metadata.release]
no-dev-version = true
Expand Down
3 changes: 2 additions & 1 deletion ndarray-rand/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ ndarray-rand
Recent Changes
--------------

- 0.8.0 (not yet released)
- 0.8.0

- Require ndarray 0.12
- Require rand 0.5

- 0.7.0
Expand Down
4 changes: 2 additions & 2 deletions parallel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ndarray-parallel"
version = "0.8.0"
version = "0.9.0"
authors = ["bluss"]
license = "MIT/Apache-2.0"

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

[dependencies]
rayon = { version = "1.0" }
ndarray = { version = "0.11.0", path = "../" }
ndarray = { version = "0.12.0", path = "../" }

[dev-dependencies]
num_cpus = "1.2"
Expand Down
4 changes: 4 additions & 0 deletions parallel/README.rst
6880
Original file line number Diff line numberDiff line change
Expand Up @@ -49,6 +49,10 @@ How to use with cargo::
Recent Changes (ndarray-parallel)
---------------------------------

- 0.9.0

- Upgrade for ndarray 0.12.0

- 0.8.0

- Upgrade for rayon 1.0!
Expand Down
2 changes: 1 addition & 1 deletion parallel/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
//! });
//! }
//! ```
#![doc(html_root_url = "http://docs.rs/ndarray-parallel/0.7/")]
#![doc(html_root_url = "http://docs.rs/ndarray-parallel/0.9/")]


pub extern crate ndarray;
Expand Down
0