From 911dc19a8f8f4611c1876b320951e004f667f962 Mon Sep 17 00:00:00 2001 From: Milan Bouchet-Valat Date: Sat, 27 Jan 2018 01:45:09 +0100 Subject: [PATCH] Add NEWS entry for HasShape{N} change (#25767) --- NEWS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/NEWS.md b/NEWS.md index 4bc1c5c37c8ec..0ea9fc42d2c33 100644 --- a/NEWS.md +++ b/NEWS.md @@ -388,6 +388,10 @@ This section lists changes that do not have deprecation warnings. and higher-dimensional arrays insted of linear indices as was previously the case. Use `LinearIndices(a)[findall(f, a)]` and similar constructs to compute linear indices. + * The `Base.HasShape` iterator trait has gained a type parameter `N` indicating the + number of dimensions, which must correspond to the length of the tuple returned by + `size` ([#25655]). + * `AbstractSet` objects are now considered equal by `==` and `isequal` if all of their elements are equal ([#25368]). This has required changing the hashing algorithm for `BitSet`. @@ -1254,3 +1258,4 @@ Command-line option changes [#25622]: https://github.com/JuliaLang/julia/issues/25622 [#25634]: https://github.com/JuliaLang/julia/issues/25634 [#25654]: https://github.com/JuliaLang/julia/issues/25654 +[#25655]: https://github.com/JuliaLang/julia/issues/25655 \ No newline at end of file