Skip to content

Commit 95a63eb

Browse files
authored
Merge pull request #400 from ev-br/release_1.14
REL: release 1.14
2 parents 176513d + 145bd7d commit 95a63eb

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

array_api_compat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
this implementation for the default when working with NumPy arrays.
1818
1919
"""
20-
__version__ = '1.14.0.dev0'
20+
__version__ = '1.14.0'
2121

2222
from .common import * # noqa: F401, F403

docs/changelog.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Changelog
22

3+
## 1.14.0 (2026-02-26)
4+
5+
### Major changes
6+
7+
This release targets the 2025.12 Array API revision. This includes
8+
9+
- `__array_api_version__` for the wrapped APIs is now set to `2025.12`;
10+
- wrappers for `linalg.eig` and `linalg.eigvals`;
11+
- wrappers for `isin` and `searchsorted` to accept Python scalars;
12+
- wrappers for `expand_dims` accepting tuple axes;
13+
- `broadcast_arrays`, `meshgrid` and `__array_api_info__().devices()` have been
14+
changed to return tuples, not lists;
15+
16+
Additionally,
17+
18+
- `clip` wrappers have been fixed to be compatible with `torch.vmap`.
19+
20+
21+
### Minor changes
22+
23+
- `expand_dims` wrappers have been fixed to accept its `axis` argument as a keyword
24+
or positional argument;
25+
- `torch.clip` wrappers have been fixed to correctly handle `nan` scalars;
26+
- `torch.repeat` wrapper has been fixed to not error out for short integers;
27+
28+
29+
The following users contributed to this release:
30+
31+
Evgeni Burovski,
32+
Josh Soref.
33+
34+
335
## 1.13.0 (2025-12-28)
436

537

0 commit comments

Comments
 (0)