diff --git a/CHANGELOG.md b/CHANGELOG.md index e853e5d..5175a07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,14 @@ 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] (MM/DD/YYYY) +## [2.1.2] - 2025-12-02 ### Added * Enabled support of Python 3.14 [gh-234](https://github.com/IntelPython/mkl_fft/pull/234) +### Changed +* Removed test for importing `mkl_fft.interfaces.numpy_fft` and `mkl_fft.interfaces.scipy_fft` from Conda recipe + ## [2.1.1] - 2025-10-09 ### Fixed diff --git a/conda-recipe-cf/meta.yaml b/conda-recipe-cf/meta.yaml index 9265287..6b9186d 100644 --- a/conda-recipe-cf/meta.yaml +++ b/conda-recipe-cf/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "2.1.1" %} +{% set version = "2.1.2" %} {% set buildnumber = 0 %} package: diff --git a/mkl_fft/_version.py b/mkl_fft/_version.py index 58039f5..4eabd0b 100644 --- a/mkl_fft/_version.py +++ b/mkl_fft/_version.py @@ -1 +1 @@ -__version__ = "2.1.1" +__version__ = "2.1.2"