From 60b261f8ebda288735febdbcb60824365a06d498 Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Wed, 30 Oct 2019 11:41:34 -0700 Subject: [PATCH 1/3] 0.25.3 whatsnew --- doc/source/whatsnew/v0.25.3.rst | 22 ++++++++++++++++++++++ doc/source/whatsnew/v1.0.0.rst | 1 - 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 doc/source/whatsnew/v0.25.3.rst diff --git a/doc/source/whatsnew/v0.25.3.rst b/doc/source/whatsnew/v0.25.3.rst new file mode 100644 index 0000000000000..f7f54198a0f82 --- /dev/null +++ b/doc/source/whatsnew/v0.25.3.rst @@ -0,0 +1,22 @@ +.. _whatsnew_0253: + +What's new in 0.25.3 (October 31, 2019) +--------------------------------------- + +These are the changes in pandas 0.25.3. See :ref:`release` for a full changelog +including other versions of pandas. + +.. _whatsnew_0253.bug_fixes: + +Bug fixes +~~~~~~~~~ + +Groupby/resample/rolling +^^^^^^^^^^^^^^^^^^^^^^^^ + +- Bug in :meth:`DataFrameGroupBy.quantile` where NA values in the grouping could cause segfaults or incorrect results (:issue:`28882`) + +Contributors +~~~~~~~~~~~~ + +.. contributors:: v0.25.2..v0.25.3 diff --git a/doc/source/whatsnew/v1.0.0.rst b/doc/source/whatsnew/v1.0.0.rst index a9218650d4fe7..fa1669b1f3343 100644 --- a/doc/source/whatsnew/v1.0.0.rst +++ b/doc/source/whatsnew/v1.0.0.rst @@ -411,7 +411,6 @@ Groupby/resample/rolling - Bug in :meth:`DataFrame.groupby` not offering selection by column name when ``axis=1`` (:issue:`27614`) - Bug in :meth:`DataFrameGroupby.agg` not able to use lambda function with named aggregation (:issue:`27519`) - Bug in :meth:`DataFrame.groupby` losing column name information when grouping by a categorical column (:issue:`28787`) -- Bug in :meth:`DataFrameGroupBy.quantile` where NA values in the grouping could cause segfaults or incorrect results (:issue:`28882`) Reshaping ^^^^^^^^^ From 4725ee4abd85938efc2a8da9a62fc9806d0b92e7 Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Wed, 30 Oct 2019 12:38:40 -0700 Subject: [PATCH 2/3] Added whatsnew to index --- doc/source/whatsnew/index.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/source/whatsnew/index.rst b/doc/source/whatsnew/index.rst index fe80cc8bb959a..05c7f72882088 100644 --- a/doc/source/whatsnew/index.rst +++ b/doc/source/whatsnew/index.rst @@ -24,6 +24,7 @@ Version 0.25 .. toctree:: :maxdepth: 2 + v0.25.3 v0.25.2 v0.25.1 v0.25.0 From a50822f344aaa2b2b6019f914aa5a79fe9a12d87 Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Wed, 30 Oct 2019 13:24:52 -0700 Subject: [PATCH 3/3] Replaced 0.25.3 with HEAD --- doc/source/whatsnew/v0.25.3.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/whatsnew/v0.25.3.rst b/doc/source/whatsnew/v0.25.3.rst index f7f54198a0f82..f73a3f956f42e 100644 --- a/doc/source/whatsnew/v0.25.3.rst +++ b/doc/source/whatsnew/v0.25.3.rst @@ -19,4 +19,4 @@ Groupby/resample/rolling Contributors ~~~~~~~~~~~~ -.. contributors:: v0.25.2..v0.25.3 +.. contributors:: v0.25.2..HEAD