From b8bc3d200430efa92f691eb13d588b5fe5d91b78 Mon Sep 17 00:00:00 2001 From: dcherian Date: Wed, 9 Oct 2019 07:53:07 -0600 Subject: [PATCH] fix whats-new. --- doc/whats-new.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 3ab7a8d7e18..24a6f65e4da 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -44,8 +44,12 @@ Bug fixes - Line plots with the ``x`` or ``y`` argument set to a 1D non-dimensional coord now plot the correct data for 2D DataArrays. (:issue:`3334`). By `Tom Nicholas `_. -- Fix deprecation of default reduction dimension for :py:class:`~xarray.core.groupby.DataArrayGroupBy` objects. - (:issue:`3337`). Also raise nicer error message when no groups are created (:issue:`1764`). By `Deepak Cherian `_. +- The default behaviour of reducing across all dimensions for + :py:class:`~xarray.core.groupby.DataArrayGroupBy` objects has now been properly removed + as was done for :py:class:`~xarray.core.groupby.DatasetGroupBy` in 0.13.0 (:issue:`3337`). + Use `xarray.ALL_DIMS` if you need to replicate previous behaviour. + Also raise nicer error message when no groups are created (:issue:`1764`). + By `Deepak Cherian `_. Documentation ~~~~~~~~~~~~~