From 88cffdc5504271f18e9e1ed3281305a162e2b85b Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Mon, 6 Oct 2025 15:18:17 -0700 Subject: [PATCH 1/2] update version for 0.3.0 release --- CHANGELOG.md | 2 +- conda-recipe-cf/meta.yaml | 2 +- mkl_umath/_version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c2cc09..d676434 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.3.0] - 2025-10-06 ### Added * Added mkl implementation for floating point data-types of `exp2`, `log2`, `fabs`, `copysign`, `nextafter`, `fmax`, `fmin` and `remainder` functions [gh-81](https://github.com/IntelPython/mkl_umath/pull/81) diff --git a/conda-recipe-cf/meta.yaml b/conda-recipe-cf/meta.yaml index 88db762..f661db4 100644 --- a/conda-recipe-cf/meta.yaml +++ b/conda-recipe-cf/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "0.3.0dev1" %} +{% set version = "0.3.0" %} {% set buildnumber = 0 %} package: diff --git a/mkl_umath/_version.py b/mkl_umath/_version.py index 86c8508..0404d81 100644 --- a/mkl_umath/_version.py +++ b/mkl_umath/_version.py @@ -1 +1 @@ -__version__ = '0.3.0dev1' +__version__ = '0.3.0' From aed721e6ba98d06e5b3546739757799f9395384a Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Tue, 7 Oct 2025 07:33:22 -0700 Subject: [PATCH 2/2] add gh-105 to the changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d676434..656cc09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed * Dropped support for `maximum` and `minimum` [gh-104](https://github.com/IntelPython/mkl_umath/pull/104) +* Disabled `-fast-math` by default [gh-105](https://github.com/IntelPython/mkl_umath/pull/105) * Used a common umath loop for `log2` function to match NumPy [gh-109](https://github.com/IntelPython/mkl_umath/pull/109) * Dropped support for `remainder` function [gh-110](https://github.com/IntelPython/mkl_umath/pull/110)