Skip to content

Commit 307234e

Browse files
committed
0.15.3
1 parent 27d798b commit 307234e

File tree

2 files changed

+52
-1
lines changed

2 files changed

+52
-1
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "ndarray"
4-
version = "0.15.2"
4+
version = "0.15.3"
55
edition = "2018"
66
authors = [
77
"Ulrik Sverdrup \"bluss\"",

RELEASES.md

+51
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
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+
152
Version 0.15.2 (2021-05-17 🇳🇴)
253
================================
354

0 commit comments

Comments
 (0)