You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17-4Lines changed: 17 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,22 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
-
## [0.20.0] - MM/DD/2026
7
+
## [0.21.0] - MM/DD/2026
8
+
9
+
### Added
10
+
11
+
### Changed
12
+
13
+
### Deprecated
14
+
15
+
### Removed
16
+
17
+
### Fixed
18
+
19
+
### Security
20
+
21
+
22
+
## [0.20.0] - 2026-04-22
8
23
9
24
This release introduces a major architectural change: the Array API-compliant tensor implementation has been migrated from `dpctl.tensor` into `dpnp.tensor`, simplifying maintenance, reducing cross-project dependencies, and allows the tensor implementation to evolve within `dpnp`.
10
25
This release changes the license from `BSD-2-Clause` to `BSD-3-Clause`.
@@ -28,7 +43,7 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum
28
43
* Added implementation of `dpnp.divmod`[#2674](https://github.com/IntelPython/dpnp/pull/2674)
29
44
* Added implementation of `dpnp.isin` function [#2595](https://github.com/IntelPython/dpnp/pull/2595)
30
45
* Added implementation of `dpnp.scipy.linalg.lu` (SciPy-compatible) [#2787](https://github.com/IntelPython/dpnp/pull/2787)
31
-
* Added support for ndarray subclassing via `dpnp.ndarray.view` method with `type` parameter [#2815](https://github.com/IntelPython/dpnp/issues/2815)
46
+
* Added support for ndarray subclassing via `dpnp.ndarray.view` method with `type` parameter [#2815](https://github.com/IntelPython/dpnp/pull/2815)
32
47
* Migrated tensor implementation from `dpctl.tensor` into `dpnp.tensor`, making `dpnp` the primary owner of the Array API-compliant tensor layer [#2856](https://github.com/IntelPython/dpnp/pull/2856)
33
48
34
49
### Changed
@@ -93,8 +108,6 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum
93
108
* Resolved a deadlock in `dpnp.linalg.qr` by releasing the GIL before OneMKL `orgqr` call to prevent host tasks contention [#2850](https://github.com/IntelPython/dpnp/pull/2850)
94
109
* Fixed `dpnp.linalg.matrix_rank` to properly handle an empty input array [#2853](https://github.com/IntelPython/dpnp/pull/2853)
0 commit comments