File tree Expand file tree Collapse file tree 2 files changed +52
-1
lines changed Expand file tree Collapse file tree 2 files changed +52
-1
lines changed Original file line number Diff line number Diff line change 11[package ]
22
33name = " ndarray"
4- version = " 0.15.2 "
4+ version = " 0.15.3 "
55edition = " 2018"
66authors = [
77 " Ulrik Sverdrup \" bluss\" " ,
Original file line number Diff line number Diff line change 1+ Version 0.15.3 (2021-06-05)
2+ ===========================
3+
4+ New features
5+ ------------
6+
7+ - New methods ` .last/_mut() ` for arrays and array views by [ @jturner314 ]
8+
9+ https://github.com/rust-ndarray/ndarray/pull/1013
10+
11+ Bug fixes
12+ ---------
13+
14+ - Fix ` as_slice_memory_order_mut() ` so that it never changes strides (the
15+ memory layout) of the array when called.
16+
17+ This was a bug that impacted ` ArcArray ` (and for example not ` Array ` or ` ArrayView/Mut ` ),
18+ and multiple methods on ` ArcArray ` that use ` as_slice_memory_order_mut ` (for example ` map_mut ` ).
19+ Fix by [ @jturner314 ] .
20+
21+ https://github.com/rust-ndarray/ndarray/pull/1019
22+
23+ API changes
24+ -----------
25+
26+ - Array1 now implements ` From<Box<[T]>> ` by [ @jturner314 ]
27+
28+ https://github.com/rust-ndarray/ndarray/pull/1016
29+
30+ - ArcArray now implements ` From<Array<...>> ` by [ @jturner314 ]
31+
32+ https://github.com/rust-ndarray/ndarray/pull/1021
33+
34+ - CowArray now implements RawDataSubst by [ @jturner314 ]
35+
36+ https://github.com/rust-ndarray/ndarray/pull/1020
37+
38+ Other changes
39+ -------------
40+
41+ - Mention unsharing in ` .as_mut_ptr ` docs by [ @jturner314 ]
42+
43+ https://github.com/rust-ndarray/ndarray/pull/1017
44+
45+ - Clarify and fix minor errors in push/append method docs by [ @bluss ] f21c668a
46+
47+ - Fix several warnings in doc example code by [ @bluss ]
48+
49+ https://github.com/rust-ndarray/ndarray/pull/1009
50+
51+
152Version 0.15.2 (2021-05-17 🇳🇴)
253================================
354
You can’t perform that action at this time.
0 commit comments