From 03d01423aebdb2c22fcdab2b1c01e194bf16a795 Mon Sep 17 00:00:00 2001 From: Deepak Cherian Date: Thu, 16 Nov 2023 12:52:07 -0700 Subject: [PATCH 1/6] 2023.11.0 Whats-new --- doc/whats-new.rst | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 2fb76cfe8c2..1580c9961b7 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -14,10 +14,18 @@ What's New np.random.seed(123456) -.. _whats-new.2023.10.2: +.. _whats-new.2023.11.0: -v2023.10.2 (unreleased) ------------------------ +v2023.11.0 (Nov 16, 2023) +------------------------- + +This release brings the ability to use ``opt_einsum`` for :py:func:`xarray.dot` by default, +support for auto-detecting ``region`` when writing partial datasets to Zarr, and the use of h5py +drivers with ``h5netcdf``. + +Thanks to the 17 contributors to this release: +Aman Bagrecha, Anderson Banihirwe, Ben Mares, Deepak Cherian, Dimitri Papadopoulos Orfanos, Ezequiel Cimadevilla Alvarez, +Illviljan, Justus Magin, Katelyn FitzGerald, Martin Durant, Maximilian Roos, Metamess, Sam Levang, Spencer Clark, Tom Nicholas, mgunyho, templiert New Features ~~~~~~~~~~~~ @@ -97,11 +105,6 @@ Documentation - Small updates to documentation on distributed writes: See :ref:`io.zarr.appending` to Zarr. By `Deepak Cherian `_. - -Internal Changes -~~~~~~~~~~~~~~~~ - - .. _whats-new.2023.10.1: v2023.10.1 (19 Oct, 2023) From c0a30d6cd817b9b8908b36354bb54d3f897796b2 Mon Sep 17 00:00:00 2001 From: Deepak Cherian Date: Fri, 17 Nov 2023 08:26:58 -0700 Subject: [PATCH 2/6] Update doc/whats-new.rst --- doc/whats-new.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 725cb6fa4eb..6708c13132c 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -23,9 +23,9 @@ This release brings the ability to use ``opt_einsum`` for :py:func:`xarray.dot` support for auto-detecting ``region`` when writing partial datasets to Zarr, and the use of h5py drivers with ``h5netcdf``. -Thanks to the 17 contributors to this release: +Thanks to the 19 contributors to this release: Aman Bagrecha, Anderson Banihirwe, Ben Mares, Deepak Cherian, Dimitri Papadopoulos Orfanos, Ezequiel Cimadevilla Alvarez, -Illviljan, Justus Magin, Katelyn FitzGerald, Martin Durant, Maximilian Roos, Metamess, Sam Levang, Spencer Clark, Tom Nicholas, mgunyho, templiert +Illviljan, Justus Magin, Katelyn FitzGerald, Kai Muehlbauer, Martin Durant, Maximilian Roos, Metamess, Sam Levang, Spencer Clark, Tom Nicholas, mgunyho, templiert New Features ~~~~~~~~~~~~ From cedb08672de4dcb518925245fdcf3cbcf1e3ba0b Mon Sep 17 00:00:00 2001 From: Deepak Cherian Date: Fri, 17 Nov 2023 11:48:01 -0700 Subject: [PATCH 3/6] Add whats-new 10 year note --- doc/whats-new.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 6708c13132c..eff317793cc 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -19,6 +19,12 @@ What's New v2023.11.0 (Nov 16, 2023) ------------------------- + +.. tip:: + + `This is our 10th year anniversary release! `_ + + This release brings the ability to use ``opt_einsum`` for :py:func:`xarray.dot` by default, support for auto-detecting ``region`` when writing partial datasets to Zarr, and the use of h5py drivers with ``h5netcdf``. From f87bdac6da74cbe3484f08206545cd6c70a37bd8 Mon Sep 17 00:00:00 2001 From: Deepak Cherian Date: Fri, 17 Nov 2023 11:51:38 -0700 Subject: [PATCH 4/6] Add banner --- doc/_static/style.css | 5 +++++ doc/conf.py | 1 + 2 files changed, 6 insertions(+) diff --git a/doc/_static/style.css b/doc/_static/style.css index a097398d1e9..ea42511c51e 100644 --- a/doc/_static/style.css +++ b/doc/_static/style.css @@ -7,6 +7,11 @@ table.docutils td { word-wrap: break-word; } +div.bd-header-announcement { + background-color: unset; + color: #000; +} + /* Reduce left and right margins */ .container, .container-lg, .container-md, .container-sm, .container-xl { diff --git a/doc/conf.py b/doc/conf.py index 9f3a70717f6..f305c2a0fa7 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -242,6 +242,7 @@ Theme by the Executable Book Project

""", twitter_url="https://twitter.com/xarray_dev", icon_links=[], # workaround for pydata/pydata-sphinx-theme#1220 + announcement="🍾 Xarray is now 10 years old! 🎉", ) From b49e4318e62ceeedb83e2b77773ce1169c244e4c Mon Sep 17 00:00:00 2001 From: Deepak Cherian Date: Fri, 17 Nov 2023 12:34:49 -0700 Subject: [PATCH 5/6] [skip-ci] add --- 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 eff317793cc..58c888eeb69 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -22,7 +22,7 @@ v2023.11.0 (Nov 16, 2023) .. tip:: - `This is our 10th year anniversary release! `_ + `This is our 10th year anniversary release! `_. Thank you for your love and support. This release brings the ability to use ``opt_einsum`` for :py:func:`xarray.dot` by default, From 5030839322c93656f6b7bd0b1431e9c8e7f4dc61 Mon Sep 17 00:00:00 2001 From: Deepak Cherian Date: Fri, 17 Nov 2023 14:02:11 -0700 Subject: [PATCH 6/6] Update doc/whats-new.rst --- 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 58c888eeb69..20e269e6025 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -22,7 +22,7 @@ v2023.11.0 (Nov 16, 2023) .. tip:: - `This is our 10th year anniversary release! `_. Thank you for your love and support. + `This is our 10th year anniversary release! `_ Thank you for your love and support. This release brings the ability to use ``opt_einsum`` for :py:func:`xarray.dot` by default,