From eab37e41c75718b28a9e543a984feba306968efb Mon Sep 17 00:00:00 2001 From: Elias Sadek Date: Thu, 13 Apr 2023 15:56:49 +0100 Subject: [PATCH 1/2] Whats new updates for v3.5.0rc0. --- docs/src/whatsnew/{latest.rst => 3.5.rst} | 12 ++- docs/src/whatsnew/index.rst | 4 +- docs/src/whatsnew/latest.rst.template | 111 ---------------------- 3 files changed, 13 insertions(+), 114 deletions(-) rename docs/src/whatsnew/{latest.rst => 3.5.rst} (94%) delete mode 100644 docs/src/whatsnew/latest.rst.template diff --git a/docs/src/whatsnew/latest.rst b/docs/src/whatsnew/3.5.rst similarity index 94% rename from docs/src/whatsnew/latest.rst rename to docs/src/whatsnew/3.5.rst index 9fd69912e1..9520f4c789 100644 --- a/docs/src/whatsnew/latest.rst +++ b/docs/src/whatsnew/3.5.rst @@ -1,6 +1,6 @@ .. include:: ../common_links.inc -|iris_version| |build_date| [unreleased] +v3.5 (13 Apr 2023) [release candidate] **************************************** This document explains the changes made to Iris for this release @@ -16,6 +16,16 @@ This document explains the changes made to Iris for this release The highlights for this major/minor release of Iris include: + * We added support for plugins. + * We allowed the usage of iris objects as weights + for cube aggregations. + * We made Iris' use of the `netCDF4`_ library + thread-safe. + * We improved performance by changing the netCDF loader to + fetch data immediately from small netCDF. + variables, instead of creating a dask array. + * We added notes within docstrings clarifying whether functions + maintain lazy data or not. * We're so proud to fully support `@ed-hawkins`_ and `#ShowYourStripes`_ ❤️ And finally, get in touch with us on :issue:`GitHub` if you have diff --git a/docs/src/whatsnew/index.rst b/docs/src/whatsnew/index.rst index 005fac70c4..883dc28f12 100644 --- a/docs/src/whatsnew/index.rst +++ b/docs/src/whatsnew/index.rst @@ -5,13 +5,13 @@ What's New in Iris ------------------ -.. include:: latest.rst +.. include:: 3.5.rst .. toctree:: :maxdepth: 1 :hidden: - latest.rst + 3.5.rst 3.4.rst 3.3.rst 3.2.rst diff --git a/docs/src/whatsnew/latest.rst.template b/docs/src/whatsnew/latest.rst.template deleted file mode 100644 index a0ce415a65..0000000000 --- a/docs/src/whatsnew/latest.rst.template +++ /dev/null @@ -1,111 +0,0 @@ -.. include:: ../common_links.inc - -|iris_version| |build_date| [unreleased] -**************************************** - -This document explains the changes made to Iris for this release -(:doc:`View all changes `.) - - -.. dropdown:: :opticon:`report` |iris_version| Release Highlights - :container: + shadow - :title: text-primary text-center font-weight-bold - :body: bg-light - :animate: fade-in - :open: - - The highlights for this major/minor release of Iris include: - - * N/A - - And finally, get in touch with us on :issue:`GitHub` if you have - any issues or feature requests for improving Iris. Enjoy! - - -NOTE: section below is a template for bugfix patches -==================================================== - (Please remove this section when creating an initial 'latest.rst') - -v3.X.X (DD MMM YYYY) -==================== - -.. dropdown:: :opticon:`alert` v3.X.X Patches - :container: + shadow - :title: text-primary text-center font-weight-bold - :body: bg-light - :animate: fade-in - - The patches in this release of Iris include: - - #. N/A - -NOTE: section above is a template for bugfix patches -==================================================== - (Please remove this section when creating an initial 'latest.rst') - - - -📢 Announcements -================ - -#. N/A - - -✨ Features -=========== - -#. N/A - - -🐛 Bugs Fixed -============= - -#. N/A - - -💣 Incompatible Changes -======================= - -#. N/A - - -🚀 Performance Enhancements -=========================== - -#. N/A - - -🔥 Deprecations -=============== - -#. N/A - - -🔗 Dependencies -=============== - -#. N/A - - -📚 Documentation -================ - -#. N/A - - -💼 Internal -=========== - -#. N/A - - -.. comment - Whatsnew author names (@github name) in alphabetical order. Note that, - core dev names are automatically included by the common_links.inc: - - - - -.. comment - Whatsnew resources in alphabetical order: - From 944a922650ee72dcc4d2451f682a743b05d41115 Mon Sep 17 00:00:00 2001 From: Elias Sadek Date: Thu, 13 Apr 2023 16:15:38 +0100 Subject: [PATCH 2/2] resolved change requests --- docs/src/whatsnew/3.5.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/whatsnew/3.5.rst b/docs/src/whatsnew/3.5.rst index 9520f4c789..b33f929744 100644 --- a/docs/src/whatsnew/3.5.rst +++ b/docs/src/whatsnew/3.5.rst @@ -7,7 +7,7 @@ This document explains the changes made to Iris for this release (:doc:`View all changes `.) -.. dropdown:: :opticon:`report` |iris_version| Release Highlights +.. dropdown:: :opticon:`report` v3.5 Release Highlights :container: + shadow :title: text-primary text-center font-weight-bold :body: bg-light @@ -17,14 +17,14 @@ This document explains the changes made to Iris for this release The highlights for this major/minor release of Iris include: * We added support for plugins. - * We allowed the usage of iris objects as weights + * We allowed the usage of Iris objects as weights for cube aggregations. * We made Iris' use of the `netCDF4`_ library thread-safe. * We improved performance by changing the netCDF loader to fetch data immediately from small netCDF. variables, instead of creating a dask array. - * We added notes within docstrings clarifying whether functions + * We added notes within docstrings clarifying whether operations maintain lazy data or not. * We're so proud to fully support `@ed-hawkins`_ and `#ShowYourStripes`_ ❤️