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'