Skip to content

Commit aba4210

Browse files
committed
0.5.0
1 parent ad293af commit aba4210

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,20 @@ 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.
93+
All ``iadd, 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 passing a custom
96+
memory layout. A lot of specific constructors were deprecated.
97+
- Add method ``.select(Axis, &[Ix]) -> OwnedArray``, to create an array
98+
from a non-contiguous pick of subviews along an axis.
99+
- Rename ``.mat_mul()`` to just ``.dot()`` and add a function ``general_mat_mul``
100+
for matrix multiplication with scaling into an existing array.
101+
- **Change .fold() to use arbitrary order.**
102+
- See below for more details
103+
90104
- 0.5.0-alpha.2
91105

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

0 commit comments

Comments
 (0)