From 0bdcd6ef394ec2adbbf5913e67860670f2a03a7c Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Wed, 6 Jan 2016 12:34:08 -0700 Subject: [PATCH] DOC: Update 1.10.3 release notes with last minute additions. [skip ci] --- doc/release/1.10.3-notes.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/release/1.10.3-notes.rst b/doc/release/1.10.3-notes.rst index ae08394b501e..b9a890d646e1 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.