diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d7c66f..db8b860 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,13 @@ 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). +## [1.4.1] - 2026-05-11 + +### Fixed +* Removed `mkl` as runtime dependency to avoid possible `pip check` failures [gh-202](https://github.com/IntelPython/mkl_umath/pull/202) + ## [0.4.0] - 2026-04-16 + ### Added * Added `patch_numpy_umath` and `restore_numpy_umath` functions for patching NumPy, and improved the patching implementation [gh-170](https://github.com/IntelPython/mkl_umath/pull/170) @@ -56,7 +62,6 @@ This release updates `mkl_umath` to be aligned with both numpy-1.26.x and numpy- ### Fixed * Fixed a bug for `mkl_umath.is_patched` function [gh-66](https://github.com/IntelPython/mkl_umath/pull/66) - ## [0.1.5] - 2025-04-09 ### Fixed diff --git a/conda-recipe-cf/meta.yaml b/conda-recipe-cf/meta.yaml index e2d14aa..d6a809b 100644 --- a/conda-recipe-cf/meta.yaml +++ b/conda-recipe-cf/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "0.4.0" %} +{% set version = "0.4.1" %} {% set buildnumber = 0 %} package: diff --git a/mkl_umath/_version.py b/mkl_umath/_version.py index 6a9beea..3d26edf 100644 --- a/mkl_umath/_version.py +++ b/mkl_umath/_version.py @@ -1 +1 @@ -__version__ = "0.4.0" +__version__ = "0.4.1"