From e18b0b88f070ad405ccbe5e6bb574ec9b84f082f Mon Sep 17 00:00:00 2001 From: Vladislav Perevezentsev Date: Wed, 5 Aug 2026 10:06:06 -0700 Subject: [PATCH 1/2] Finalized the CHANGELOG --- CHANGELOG.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6811368..db982a0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [dev] - YYYY-MM-DD +## [0.5.0] - 2026-08-06 ### Added * Added CLI patch management for NumPy umath with persistent install/status/uninstall and one-shot command patching via `python -m mkl_umath --patch ` and `python -m mkl_umath --with-numpy-patch ` [gh-216](https://github.com/IntelPython/mkl_umath/pull/216) @@ -14,8 +14,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Migrated the build system from `scikit-build` to `meson-python`, removing `setup.py` and `CMakeLists.txt` in favor of `meson.build` [gh-166](https://github.com/IntelPython/mkl_umath/pull/166) * Renamed the `OPTIMIZATION_REPORT` and `MKL_THREADING` build options to `opt_report` and `mkl_threading`, now passed as meson setup args (e.g. `-Csetup-args=-Dopt_report=true` and `-Csetup-args=-Dmkl_threading=tbb_thread`) [gh-166](https://github.com/IntelPython/mkl_umath/pull/166) -### Fixed - ## [0.4.3] - 2026-06-30 ### Changed From 788f7bd46851229f2ed8daf2dbec55bd8a220190 Mon Sep 17 00:00:00 2001 From: Vladislav Perevezentsev Date: Wed, 5 Aug 2026 10:06:46 -0700 Subject: [PATCH 2/2] Bump the version --- conda-recipe-cf/meta.yaml | 2 +- mkl_umath/_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conda-recipe-cf/meta.yaml b/conda-recipe-cf/meta.yaml index 3c5a12f7..7bbcc5df 100644 --- a/conda-recipe-cf/meta.yaml +++ b/conda-recipe-cf/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "0.5.0dev0" %} +{% set version = "0.5.0" %} {% set buildnumber = 0 %} package: diff --git a/mkl_umath/_version.py b/mkl_umath/_version.py index 2d299658..3d187266 100644 --- a/mkl_umath/_version.py +++ b/mkl_umath/_version.py @@ -1 +1 @@ -__version__ = "0.5.0dev0" +__version__ = "0.5.0"