diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2014-09-07 22:14:30 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2014-09-07 22:14:30 +0200 |
commit | 2c6937f4782e5947e6100941d1a291eb1d6f3d65 (patch) | |
tree | 425837f023162921af27b26dd7ccbd369ee242a4 /doc | |
parent | 48df1930862078e5ede30b4baff0e722ffaecbcf (diff) | |
parent | 4a23c23ecf21d42ff4cf72f92e09e3d0575aa920 (diff) | |
download | numpy-2c6937f4782e5947e6100941d1a291eb1d6f3d65.tar.gz |
Merge pull request #5055 from juliantaylor/note-sync
DOC: sync release notes with 1.9 branch
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.8.2-notes.rst | 19 | ||||
-rw-r--r-- | doc/release/1.9.0-notes.rst | 9 | ||||
-rw-r--r-- | doc/source/release.rst | 2 |
3 files changed, 21 insertions, 9 deletions
diff --git a/doc/release/1.8.2-notes.rst b/doc/release/1.8.2-notes.rst new file mode 100644 index 000000000..c21f81a27 --- /dev/null +++ b/doc/release/1.8.2-notes.rst @@ -0,0 +1,19 @@ +NumPy 1.8.2 Release Notes +************************* + +This is a bugfix only release in the 1.8.x series. + +Issues fixed +============ + +* gh-4836: partition produces wrong results for multiple selections in equal ranges +* gh-4656: Make fftpack._raw_fft threadsafe +* gh-4628: incorrect argument order to _copyto in in np.nanmax, np.nanmin +* gh-4642: Hold GIL for converting dtypes types with fields +* gh-4733: fix np.linalg.svd(b, compute_uv=False) +* gh-4853: avoid unaligned simd load on reductions on i386 +* gh-4722: Fix seg fault converting empty string to object +* gh-4613: Fix lack of NULL check in array_richcompare +* gh-4774: avoid unaligned access for strided byteswap +* gh-650: Prevent division by zero when creating arrays from some buffers +* gh-4602: ifort has issues with optimization flag O2, use O1 diff --git a/doc/release/1.9.0-notes.rst b/doc/release/1.9.0-notes.rst index e6bedcdf8..37343ec6d 100644 --- a/doc/release/1.9.0-notes.rst +++ b/doc/release/1.9.0-notes.rst @@ -6,8 +6,6 @@ This release supports Python 2.6 - 2.7 and 3.2 - 3.4. Highlights ========== -* Addition of `__numpy_ufunc__` to allow overriding ufuncs in ndarray - subclasses. * Numerous performance improvements in various areas, most notably indexing and operations on small arrays are significantly faster. Indexing operations now also release the GIL. @@ -269,13 +267,6 @@ ufunc reductions do since 1.7. One can now say axis=(index, index) to pick a list of axes for the reduction. The ``keepdims`` keyword argument was also added to allow convenient broadcasting to arrays of the original shape. -Ufunc and Dot Overrides -~~~~~~~~~~~~~~~~~~~~~~~ -For better compatibility with external objects you can now override -universal functions (ufuncs), ``numpy.core._dotblas.dot``, and -``numpy.core.multiarray.dot`` (the numpy.dot functions). By defining a -``__numpy_ufunc__`` method. - Dtype parameter added to ``np.linspace`` and ``np.logspace`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The returned data type from the ``linspace`` and ``logspace`` functions can diff --git a/doc/source/release.rst b/doc/source/release.rst index 4df0631d4..657eb9a5d 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -4,6 +4,8 @@ Release Notes .. include:: ../release/1.10.0-notes.rst .. include:: ../release/1.9.0-notes.rst +.. include:: ../release/1.8.2-notes.rst +.. include:: ../release/1.8.1-notes.rst .. include:: ../release/1.8.0-notes.rst .. include:: ../release/1.7.2-notes.rst .. include:: ../release/1.7.1-notes.rst |