Skip to content

Commit 750938d

Browse files
committed
DOC: Update changelog for 0.15.2
1 parent d155d84 commit 750938d

File tree

2 files changed

+44
-1
lines changed

2 files changed

+44
-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.15.1"
4+
version = "0.15.2"
55
edition = "2018"
66
authors = [
77
"bluss",

RELEASES.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
Version 0.15.2 (2021-xx-xx Not released yet)
2+
===========================
3+
4+
New features
5+
------------
6+
7+
- New methods for growing/appending to owned `Array`s. These methods allow
8+
building an array efficiently chunk by chunk. By [@bluss].
9+
10+
- `.push_row()`, `.push_column()`
11+
- `.push(axis, array)`, `.append(axis, array)`
12+
13+
https://github.com/rust-ndarray/ndarray/pull/932 <br>
14+
https://github.com/rust-ndarray/ndarray/pull/990
15+
16+
- New reshaping method `.to_shape(...)`, called with new shape and optional
17+
ordering parameter, this is the first improvement for reshaping in terms of
18+
added features and increased consistency. By [@bluss].
19+
20+
https://github.com/rust-ndarray/ndarray/pull/982
21+
22+
- `Array` now implements a by-value iterator, [by @bluss].
23+
24+
https://github.com/rust-ndarray/ndarray/pull/986
25+
26+
Enhancements
27+
------------
28+
29+
Bug fixes
30+
---------
31+
32+
- Fix an error in construction of empty array with negative strides, by [@jturner314].
33+
34+
https://github.com/rust-ndarray/ndarray/pull/998
35+
36+
API changes
37+
-----------
38+
39+
40+
Other changes
41+
-------------
42+
43+
144
Version 0.15.1 (2021-03-29)
245
===========================
346

0 commit comments

Comments
 (0)