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 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"