File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.10.0 (2024-12-25)
4
+
5
+ ### Major Changes
6
+
7
+ - New function ` is_writeable_array ` adds transparent support for readonly
8
+ arrays, such as JAX arrays or numpy arrays with ` .flags.writeable=False ` .
9
+
10
+ - ` asarray(..., copy=None) ` with ` dask ` backend always copies, so that
11
+ ` copy=None ` and ` copy=True ` are equivalent for the ` dask ` backend.
12
+ This change is made to be forward compatible with the ` dask==2024.12 `
13
+ release.
14
+
15
+
16
+ ### Minor Changes
17
+
18
+ - ` array_namespace ` accepts (and ignores) ` None ` and python scalars (int, float,
19
+ complex, bool). This change is to simplify downstream adoption, for
20
+ functions where arguments can be either arrays or scalars.
21
+
22
+ - ` vecdot ` conjugates its first argument, as stipulated by the Array API spec.
23
+ Previously, conjation if the first argument was missing.
24
+
25
+
3
26
## 1.9.1 (2024-10-29)
4
27
5
28
### Major Changes
You can’t perform that action at this time.
0 commit comments