summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2016-01-06 12:34:08 -0700
committerCharles Harris <charlesr.harris@gmail.com>2016-01-06 13:16:32 -0700
commit076547ffbb47cfec29071b76dca05a776e92df09 (patch)
tree504a473a804c85ba1aace1e129f4a6f34f6cf388
parent2e54336fb539191086ee97f58e9c7d536690abda (diff)
downloadnumpy-076547ffbb47cfec29071b76dca05a776e92df09.tar.gz
DOC: Update 1.10.3 release notes with last minute additions.
[skip ci]
-rw-r--r--doc/release/1.10.3-notes.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/release/1.10.3-notes.rst b/doc/release/1.10.3-notes.rst
index ae08394b5..b9a890d64 100644
--- a/doc/release/1.10.3-notes.rst
+++ b/doc/release/1.10.3-notes.rst
@@ -10,8 +10,9 @@ using one of the providers of windows binaries.
Issues Fixed
============
-* gh-6922 BUG: numpy.recarray.sort segfaults on Windows
+* gh-6922 BUG: numpy.recarray.sort segfaults on Windows.
* gh-6937 BUG: busday_offset does the wrong thing with modifiedpreceding roll.
+* gh-6949 BUG: Type is lost when slicing a subclass of recarray.
Merged PRs
==========
@@ -26,3 +27,5 @@ the PR number for the original PR against master is listed.
* gh-6924 BUG: Fix segfault gh-6922.
* gh-6942 Fix datetime roll='modifiedpreceding' bug.
* gh-6943 DOC,BUG: Fix some latex generation problems.
+* gh-6950 BUG trace is not subclass aware, np.trace(ma) != ma.trace().
+* gh-6952 BUG recarray slices should preserve subclass.