Skip to content

Commit 2a1babb

Browse files
added change log
1 parent 9e05d64 commit 2a1babb

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

CHANGES.rst

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
=================
2+
mkl_fft changelog
3+
=================
4+
5+
1.0.4
6+
=====
7+
8+
Added CHANGES.rst. Fixed issue #11 by using lock around calls to 1D FFT routines.
9+
10+
1.0.3
11+
====
12+
13+
This is a bug fix release.
14+
15+
It fixes issues #9, and #13.
16+
17+
As part of fixing issue #13, out-of-place 1D FFT calls such as `fft`, `ifft`, `rfft_numpy` and `irfftn_numpy` will allocate Fortran layout array for the output is the input is a Fotran array.
18+
19+
20+
1.0.2
21+
====
22+
23+
Minor update of `mkl_fft`, reflecting renaming of `numpy.core.multiarray_tests` module to `numpy.core._multiarray_tests` as well as fixing #4.
24+
25+
26+
1.0.1
27+
====
28+
29+
Bug fix release.
30+
31+
1.0.0
32+
====
33+
34+
Initial release of `mkl_fft`.

mkl_fft/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@
2727
from ._pydfti import (fft, ifft, fft2, ifft2, fftn, ifftn, rfft, irfft,
2828
rfft_numpy, irfft_numpy, rfftn_numpy, irfftn_numpy)
2929

30-
__version__ = '1.0.3'
30+
__version__ = '1.0.4'
3131
__all__ = ['fft', 'ifft', 'fft2', 'ifft2', 'fftn', 'ifftn', 'rfft', 'irfft',
3232
'rfft_numpy', 'irfft_numpy', 'rfftn_numpy', 'irfftn_numpy']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
MAJOR = 1
3030
MINOR = 0
31-
MICRO = 3
31+
MICRO = 4
3232
ISRELEASED = False
3333

3434
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

0 commit comments

Comments
 (0)