From fd882d88f6b17f5d7baa32f57ef11bb8a0669f19 Mon Sep 17 00:00:00 2001 From: Owen Littlejohns Date: Wed, 11 Sep 2024 14:01:40 -0400 Subject: [PATCH 1/2] Update whats-new.rst for v2024.09.0. --- doc/whats-new.rst | 33 ++++++++++++--------------------- 1 file changed, 12 insertions(+), 21 deletions(-) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index b5e3ced3be8..3c6bc0ff95b 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -15,15 +15,21 @@ What's New np.random.seed(123456) -.. _whats-new.2024.07.1: +.. _whats-new.2024.09.0: -v2024.07.1 (unreleased) ------------------------ +v2024.09.0 (Sept 11, 2024) +-------------------------- +This release drops support for Python 3.9, while providing numerous performance improvements and bug fixes. + +Thanks to the 33 contributors to this release: +Alfonso Ladino, Andrew Scherer, Anurag Nayak, David Hoese, Deepak Cherian, Diogo Teles Sant'Anna, Dom, Elliott Sales de Andrade, Eni, Holly Mandel, Illviljan, Jack Kelly, Julius Busecke, Justus Magin, Kai Mühlbauer, Manish Kumar Gupta, Matt Savoie, Maximilian Roos, Michele Claus, Miguel Jimenez, Niclas Rieger, Pascal Bourgault, Philip Chmielowiec, Spencer Clark, Stephan Hoyer, Tao Xin, Tiago Sanona, TimothyCera-NOAA, Tom Nicholas, Tom White, Virgile Andreani, oliverhiggs and tiago New Features ~~~~~~~~~~~~ -- Add :py:attr:`~core.accessor_dt.DatetimeAccessor.days_in_year` and :py:attr:`~core.accessor_dt.DatetimeAccessor.decimal_year` to the Datetime accessor on DataArrays. (:pull:`9105`). +- Add :py:attr:`~core.accessor_dt.DatetimeAccessor.days_in_year` and + :py:attr:`~core.accessor_dt.DatetimeAccessor.decimal_year` to the + ``DatetimeAccessor`` on ``xr.DataArray``. (:pull:`9105`). By `Pascal Bourgault `_. Performance @@ -38,6 +44,8 @@ Performance By `Deepak Cherian `_. - Allow data variable specific ``constant_values`` in the dataset ``pad`` function (:pull:`9353``). By `Tiago Sanona `_. +- Speed up grouping by avoiding deep-copy of non-dimension coordinates (:issue:`9426`, :pull:`9393`) + By `Deepak Cherian `_. Breaking changes ~~~~~~~~~~~~~~~~ @@ -61,11 +69,6 @@ Breaking changes zarr 2.14 2.16 ===================== ========= ======= - -Deprecations -~~~~~~~~~~~~ - - Bug fixes ~~~~~~~~~ @@ -90,24 +93,12 @@ Bug fixes (:issue:`9408`, :pull:`9413`). By `Oliver Higgs `_. -Performance -~~~~~~~~~~~ - -- Speed up grouping by avoiding deep-copy of non-dimension coordinates (:issue:`9426`, :pull:`9393`) - By `Deepak Cherian `_. - -Documentation -~~~~~~~~~~~~~ - - Internal Changes ~~~~~~~~~~~~~~~~ - Re-enable testing ``pydap`` backend with ``numpy>=2`` (:pull:`9391`). By `Miguel Jimenez `_ . - - .. _whats-new.2024.07.0: v2024.07.0 (Jul 30, 2024) From 7a42d66558bc0ae3a1a1a7e29252750512ab0529 Mon Sep 17 00:00:00 2001 From: owenlittlejohns Date: Wed, 11 Sep 2024 14:14:46 -0400 Subject: [PATCH 2/2] Include groupby.multiple in 2024.09.0 release summary. Co-authored-by: Deepak Cherian --- doc/whats-new.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 3c6bc0ff95b..4902db26cd1 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -19,7 +19,7 @@ What's New v2024.09.0 (Sept 11, 2024) -------------------------- -This release drops support for Python 3.9, while providing numerous performance improvements and bug fixes. +This release drops support for Python 3.9, and adds support for grouping by :ref:`multiple arrays `, while providing numerous performance improvements and bug fixes. Thanks to the 33 contributors to this release: Alfonso Ladino, Andrew Scherer, Anurag Nayak, David Hoese, Deepak Cherian, Diogo Teles Sant'Anna, Dom, Elliott Sales de Andrade, Eni, Holly Mandel, Illviljan, Jack Kelly, Julius Busecke, Justus Magin, Kai Mühlbauer, Manish Kumar Gupta, Matt Savoie, Maximilian Roos, Michele Claus, Miguel Jimenez, Niclas Rieger, Pascal Bourgault, Philip Chmielowiec, Spencer Clark, Stephan Hoyer, Tao Xin, Tiago Sanona, TimothyCera-NOAA, Tom Nicholas, Tom White, Virgile Andreani, oliverhiggs and tiago