From 92b3285517c3120db2d85f51609b77ccb9b266a5 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Thu, 5 Jun 2025 16:28:35 -0700 Subject: [PATCH 1/2] Add missing changes to the changelog --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d77b3bdb53..bbc1592085a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,8 @@ Moreover, it adds support to build `dpnp` from the source for AMD GPUs. * Added implementation of `dpnp.bartlett` [#2366](https://github.com/IntelPython/dpnp/pull/2366) * Added implementation of `dpnp.convolve` [#2205](https://github.com/IntelPython/dpnp/pull/2205) * Added implementation of `dpnp.kaiser` [#2387](https://github.com/IntelPython/dpnp/pull/2387) +* Added implementation of `dpnp.bitwise_count` [#2308](https://github.com/IntelPython/dpnp/pull/2308) +* Added implementation of `dpnp.common_type` [#2391](https://github.com/IntelPython/dpnp/pull/2391) * Added implementation of `dpnp.interp` [#2417](https://github.com/IntelPython/dpnp/pull/2417) * Added support to build `dpnp` for specified AMD GPU architecture using [CodePlay oneAPI plug-in](https://developer.codeplay.com/products/oneapi/amd/home/) [#2302](https://github.com/IntelPython/dpnp/pull/2302) @@ -52,7 +54,7 @@ Moreover, it adds support to build `dpnp` from the source for AMD GPUs. * Updated FFT module to ensure an input array is Hermitian before calling complex-to-real FFT [#2444](https://github.com/IntelPython/dpnp/pull/2444) * Aligned `black` configuration with the list of supported python versions [#2457](https://github.com/IntelPython/dpnp/pull/2457) * Use `pyproject.toml` instead of `setup.py` aligning with current packaging best practices [#2462](https://github.com/IntelPython/dpnp/pull/2462) -* Added a clarification to `dpnp.linalg.cond` docstring about its behavior with singular matrices [#2500] (https://github.com/IntelPython/dpnp/pull/2500) +* Added a clarification to `dpnp.linalg.cond` docstring about its behavior with singular matrices [#2460](https://github.com/IntelPython/dpnp/pull/2460) ### Fixed From 07f07ecaf0d56ee1128e924cce547df75db2ece6 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Thu, 5 Jun 2025 16:29:03 -0700 Subject: [PATCH 2/2] Update release date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbc1592085a..c8524f18059 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -## [0.18.0] - 06/DD/2025 +## [0.18.0] - 06/04/2025 This release achieves 100% compliance with Python Array API specification (revision [2024.12](https://data-apis.org/array-api/2024.12/)). The release provides enhanced compatibility with NumPy 2.2.5. Window and mathematical routines are complemented by a set of new functions.