File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
3
3
name = " ndarray"
4
- version = " 0.5.0-alpha.2 "
4
+ version = " 0.5.0"
5
5
authors = [" bluss" ]
6
6
license = " MIT/Apache-2.0"
7
7
Original file line number Diff line number Diff line change @@ -87,6 +87,20 @@ How to use with cargo::
87
87
Recent Changes (ndarray)
88
88
------------------------
89
89
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
+
90
104
- 0.5.0-alpha.2
91
105
92
106
- Fix a namespace bug in the stack![] macro.
You can’t perform that action at this time.
0 commit comments