diff --git a/Cargo.toml b/Cargo.toml index f3d3546a6..10a9f43b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/README.rst b/README.rst index b29cb1762..4bffd539e 100644 --- a/README.rst +++ b/README.rst @@ -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. diff --git a/ndarray-rand/Cargo.toml b/ndarray-rand/Cargo.toml index 096c4c283..34620b0a7 100644 --- a/ndarray-rand/Cargo.toml +++ b/ndarray-rand/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ndarray-rand" -version = "0.7.0" +version = "0.8.0" authors = ["bluss"] license = "MIT/Apache-2.0" @@ -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 diff --git a/ndarray-rand/README.rst b/ndarray-rand/README.rst index 362cd289d..658de3e2e 100644 --- a/ndarray-rand/README.rst +++ b/ndarray-rand/README.rst @@ -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 diff --git a/parallel/Cargo.toml b/parallel/Cargo.toml index 2223fc210..31b11f25e 100644 --- a/parallel/Cargo.toml +++ b/parallel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ndarray-parallel" -version = "0.8.0" +version = "0.9.0" authors = ["bluss"] license = "MIT/Apache-2.0" @@ -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" diff --git a/parallel/README.rst b/parallel/README.rst index 8635e24ed..49142a21c 100644 --- a/parallel/README.rst +++ b/parallel/README.rst @@ -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! diff --git a/parallel/src/lib.rs b/parallel/src/lib.rs index 2669fce26..1a65eb900 100644 --- a/parallel/src/lib.rs +++ b/parallel/src/lib.rs @@ -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;