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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "ndarray"
version = "0.12.0"
version = "0.12.1"
authors = [
"bluss",
"Jim Turner"
Expand Down
6 changes: 3 additions & 3 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.0"
ndarray = "0.12.1"

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,15 +80,15 @@ provider::


[dependencies]
ndarray = { version = "0.12.0", features = ["blas"] }
ndarray = { version = "0.12.1", 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"] }


Recent Changes (ndarray)
------------------------

- 0.12.1 (not yet released)
- 0.12.1

- Add ``std_axis`` method for computing standard deviation by @LukeMathWalker.
- Add ``product`` method for computing product of elements in an array by @sebasv.
Expand Down