Skip to content

Commit df97061

Browse files
committed
DOC: Add draft of release notes for next release
1 parent 1f53dce commit df97061

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

RELEASES.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
Version 0.15.0 (Not released yet)
2+
=================================
3+
4+
New features
5+
------------
6+
7+
- Support for compiling ndarray as `no_std` (using core and alloc) by [@xd009642]
8+
9+
https://github.com/rust-ndarray/ndarray/pull/861
10+
11+
- New methods `.cell_view()` and `ArrayViewMut::into_cell_view` that enable
12+
new ways of working with array elements as if they were in Cells - setting
13+
elements through shared views and broadcast views.
14+
15+
https://github.com/rust-ndarray/ndarray/pull/877
16+
17+
18+
Enhancements
19+
------------
20+
21+
- Fix `Zip` for the 0-dimensional case by [@jturner314]
22+
23+
https://github.com/rust-ndarray/ndarray/pull/862
24+
25+
API changes
26+
-----------
27+
28+
- Removed deprecated methods by [@bluss]:
29+
30+
- Remove deprecated `.all_close()` - use approx feature and methods like `.abs_diff_eq` instead
31+
- Mark `.scalar_sum()` as deprecated - use `.sum()` instead
32+
- Remove deprecated `DataClone` - use `Data + RawDataClone` instead
33+
- Remove deprecated `ArrayView::into_slice` - use `to_slice()` instead.
34+
35+
https://github.com/rust-ndarray/ndarray/pull/874
36+
37+
- Remove deprecated methods: rows, cols (for row and column count; the new
38+
names are nrows and ncols) by [@bluss]
39+
40+
https://github.com/rust-ndarray/ndarray/pull/872
41+
42+
- Renamed methods (old names are now deprecated) by [@bluss]
43+
44+
- `genrows/_mut` -> `rows/_mut`
45+
- `gencolumns/_mut` -> `columns/_mut`
46+
47+
https://github.com/rust-ndarray/ndarray/pull/872
48+
49+
Other changes
50+
-------------
51+
52+
53+
154
Version 0.14.0 (2020-11-28)
255
===========================
356

0 commit comments

Comments
 (0)