File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,11 @@ Breaking changes
107
107
108
108
This section lists changes that do not have deprecation warnings.
109
109
110
+ * All dimensions indexed by scalars are now dropped, whereas previously only
111
+ trailing scalar dimensions would be omitted from the result ([ #13612 ] ). This
112
+ is a very major behavioral change, but should cause obvious failures. To retain
113
+ a dimension sliced with a scalar ` i ` slice with ` i:i ` instead.
114
+
110
115
* The assignment operations ` .+= ` , ` .*= ` and so on now generate calls
111
116
to ` broadcast! ` on the left-hand side (or call to ` view(a, ...) ` on the left-hand side
112
117
if the latter is an indexing expression, e.g. ` a[...] ` ). This means that they will fail
@@ -192,11 +197,6 @@ Library improvements
192
197
193
198
* Arrays and linear algebra:
194
199
195
- * All dimensions indexed by scalars are now dropped, whereas previously only
196
- trailing scalar dimensions would be omitted from the result ([ #13612 ] ). This
197
- is a very major behavioral change, but should cause obvious failures. To retain
198
- a dimension sliced with a scalar ` i ` slice with ` i:i ` instead.
199
-
200
200
* Dimensions indexed by multidimensional arrays add dimensions. More generally, the
201
201
dimensionality of the result is the sum of the dimensionalities of the indices ([ #15431 ] ).
202
202
You can’t perform that action at this time.
0 commit comments