From 796fd43c4f7f273b7dc45cf5b6422bddc9b98550 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Wed, 24 Feb 2021 17:39:00 -0600 Subject: [PATCH] v1.3.0 --- CHANGES.rst | 8 ++++++++ conda-recipe/meta.yaml | 4 ++-- mkl_fft/_version.py | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index c793072..2588573 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,14 @@ mkl_fft changelog ================= +1.3.0 +===== + +Updated numpy interface to support new in NumPy 1.20 supported values of norm keyword, such as "forward" and "backward". +To enable this, `mkl_fft` functions now support `forward_scale` parameter that defaults to 1. + +Fixed issue #48. + 1.2.1 ===== diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 2cc761c..ee35507 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "1.2.0" %} +{% set version = "1.3.0" %} {% set buildnumber = 0 %} package: @@ -41,6 +41,6 @@ test: about: home: http://github.com/IntelPython/mkl_fft - license: BSD + license: BSD-3 license_file: LICENSE.txt summary: NumPy-based implementation of Fast Fourier Transform using Intel (R) Math Kernel Library diff --git a/mkl_fft/_version.py b/mkl_fft/_version.py index 3f262a6..19b4f1d 100644 --- a/mkl_fft/_version.py +++ b/mkl_fft/_version.py @@ -1 +1 @@ -__version__ = '1.2.1' +__version__ = '1.3.0'