Skip to content

Commit 02c93b6

Browse files
committed
0.5.0
1 parent ad293af commit 02c93b6

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
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.5.0-alpha.2"
4+
version = "0.5.0"
55
authors = ["bluss"]
66
license = "MIT/Apache-2.0"
77

README.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,21 @@ How to use with cargo::
8787
Recent Changes (ndarray)
8888
------------------------
8989

90+
- 0.5.0
91+
92+
- Require Rust 1.8 and exable +=, -= and other assign operators. All ``iadd,
93+
iadd_scalar`` and similar methods are now deprecated.
94+
- ndarray now has a prelude ``use ndarray::prelude::*;``.
95+
- Constructors from_elem, zeros, from_shape_vec now all support custom
96+
memory layout in the same function. A lot of specific constructors
97+
were deprecated.
98+
- Add method ``.select(Axis, &[Ix]) -> OwnedArray``, to create an array
99+
from a non-contiguous pick of subviews along an axis.
100+
- Rename ``.mat_mul()`` to just ``.dot()`` and added a versatile
101+
function for matrix multiplication with scaling into an existing array.
102+
- **Change .fold() to use arbitrary order.**
103+
- See below for more details
104+
90105
- 0.5.0-alpha.2
91106

92107
- Fix a namespace bug in the stack![] macro.

0 commit comments

Comments
 (0)