From 351db9c74d29cb342bec6a56f248568ce19f0f5e Mon Sep 17 00:00:00 2001 From: Sanket Verma Date: Thu, 12 Jan 2023 08:17:50 +0100 Subject: [PATCH 01/10] 2.13.4/2.14.0 draft release notes --- docs/release.rst | 120 +++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 110 insertions(+), 10 deletions(-) diff --git a/docs/release.rst b/docs/release.rst index 50eb8316bf..da8a938959 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -6,24 +6,47 @@ Release notes # to document your changes. On releases it will be # re-indented so that it does not show up in the notes. -.. _unreleased: + .. _unreleased: -Unreleased ----------- + Unreleased + ---------- .. # .. warning:: # Pre-release! Use :command:`pip install --pre zarr` to evaluate this release. -* Fix bug that caused double counting of groups in ``groups()`` and ``group_keys()`` - methods with V3 stores. +.. _release_2.13.4: + +2.13.4 +------ + +### Major changes + +`NONE` + +### Enhancements + +`NONE` + +### Bug fixes + +* Fix bug that caused double counting of groups in ``groups()`` and ``group_keys()`` methods with V3 stores. By :user:`Ryan Abernathey ` :issue:`1228`. -* Handle fsspec.FSMap using FSStore store - By :user:`Rafal Wojdyla ` :issue:`1304`. -.. _release_2.13.2: +* Remove unnecessary calling of `contains_array` for key that ended in `.array.json`. + By :user:`Joe Hamman ` :issue: `1149`. -Maintenance -~~~~~~~~~~~ +### Documentation + +* Fix minor indexing errors in tutorial and specification examples of documentation. + By :user:`Kola Babalola ` :issue: `1277`. + +* Add `requirements_rtfd.txt` in `contributing.rst`. + By :user:`AWA BRANDON AWA ` :issue: `1243`. + +* Add documentation for find/findall using visit + By :user:`Weddy Gikunda ` :issue: `1241`. + +### Maintenance * Migrate to ``pyproject.toml`` and remove redundant infrastructure. By :user:`Saransh Chopra ` :issue:`1158`. @@ -55,6 +78,83 @@ Maintenance * Delete unused files. By :user:`John Kirkham ` :issue:`1251`. +* Skip labeler for bot PRs + By :user:`Saransh Chopra ` :issue:`1271`. + +* Restore Flake8 configuration + By :user:`John Kirkham ` :issue: `1249`. + +* Add missing newline at EOF + By :user:`Dimitri Papadopoulos` :issue: `1253`. + +* Add `license_files` to `pyproject.toml` + By :user:`John Kirkham ` :issue: `1247`. + +* Adding `pyupgrade` suggestions + By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1225`. + +* Fixed some linting errors. + By :user:`Weddy Gikunda ` :issue: `1226`. + +* Added the link to main website in readthedocs sidebar. + By :user:`Stephanie_nkwatoh ` :issue: `1216`. + +* Remove redudant wheel dependency in `pyproject.toml` + By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1233`. + +* Turned on `isloated_build` in `tox.ini` file + By :user:`AWA BRANDON AWA ` :issue: `1210`. + +* Fixed `flake8` alert and avoid duplication of `Zarr Developers`. + By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1203`. + +* Bump to NumPy 1.20+ in `environment.yml` + By :user:`John Kirkham ` :issue: `1201`. + +* Bump to NumPy 1.20 in `pyproject.toml` + By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1192`. + +* Remove LGTM (`.lgtm.yml`) configuration file + By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1191`. + +* Codespell will skip `fixture` in pre-commit + By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1197`. + +* Add msgpack in `requirements_rtfd.txt` + By :user:`Emmanuel Bolarinwa ` :issue: `1188`. + +* Added license to docs fixed a typo from `_spec_v2` to `_spec_v3`. + By :user:`AWA BRANDON AWA ` :issue: `1182`. + +* Fixed installation link in `README.md` + By :user:`AWA BRANDON AWA ` :issue: `1177`. + +* Fixed typos in `installation.rst` and `release.rst` + By :user:`Chizoba Nweke ` :issue: `1178`. + +* Refresh of the main landing page + By :user:`Josh Moore ` :issue: `1173`. + +* Set `docs/conf.py` language to `en` + By :user:`AWA BRANDON AWA ` :issue: `1174`. + +* Added `installation.rst` to the docs + By :user:`AWA BRANDON AWA ` :issue: `1170`. + +* Adjustment of year to `2015-2018` to `2015-2022` in the docs + By :user:`Emmanuel Bolarinwa ` :issue: `1165`. + +* Updated `Forking the repository` section in `contributing.rst` + By :user:`AWA BRANDON AWA ` :issue: `1171`. + +* Updated GitHub actions + By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1134`. + +* Fix bug that caused double counting of groups in ``groups()`` and ``group_keys()`` + methods with V3 stores. + By :user:`Ryan Abernathey ` :issue:`1228`. +* Handle fsspec.FSMap using FSStore store + By :user:`Rafal Wojdyla ` :issue:`1304`. .. _release_2.13.3: From 179887d932692aa57f97557b245fd4e8860bf2b0 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Thu, 12 Jan 2023 08:20:56 +0100 Subject: [PATCH 02/10] Correct typo --- docs/release.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/release.rst b/docs/release.rst index da8a938959..f0df61b7b3 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -99,7 +99,7 @@ Release notes * Added the link to main website in readthedocs sidebar. By :user:`Stephanie_nkwatoh ` :issue: `1216`. -* Remove redudant wheel dependency in `pyproject.toml` +* Remove redundant wheel dependency in `pyproject.toml` By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1233`. * Turned on `isloated_build` in `tox.ini` file @@ -153,6 +153,7 @@ Release notes * Fix bug that caused double counting of groups in ``groups()`` and ``group_keys()`` methods with V3 stores. By :user:`Ryan Abernathey ` :issue:`1228`. + * Handle fsspec.FSMap using FSStore store By :user:`Rafal Wojdyla ` :issue:`1304`. From 8fd7a8b33e23f1b74cb4f9e4230bf09c5df11730 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Thu, 12 Jan 2023 08:22:00 +0100 Subject: [PATCH 03/10] Fix headings --- docs/release.rst | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/release.rst b/docs/release.rst index f0df61b7b3..29aba3ef10 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -19,15 +19,18 @@ Release notes 2.13.4 ------ -### Major changes +Major changes +~~~~~~~~~~~~~ `NONE` -### Enhancements +Enhancements +~~~~~~~~~~~~ `NONE` -### Bug fixes +Bug fixes +~~~~~~~~~ * Fix bug that caused double counting of groups in ``groups()`` and ``group_keys()`` methods with V3 stores. By :user:`Ryan Abernathey ` :issue:`1228`. @@ -35,7 +38,8 @@ Release notes * Remove unnecessary calling of `contains_array` for key that ended in `.array.json`. By :user:`Joe Hamman ` :issue: `1149`. -### Documentation +Documentation +~~~~~~~~~~~~~ * Fix minor indexing errors in tutorial and specification examples of documentation. By :user:`Kola Babalola ` :issue: `1277`. @@ -46,7 +50,8 @@ Release notes * Add documentation for find/findall using visit By :user:`Weddy Gikunda ` :issue: `1241`. -### Maintenance +Maintenance +~~~~~~~~~~~ * Migrate to ``pyproject.toml`` and remove redundant infrastructure. By :user:`Saransh Chopra ` :issue:`1158`. From a27e925e75559481d418472ada58209f6459df51 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Thu, 12 Jan 2023 08:22:43 +0100 Subject: [PATCH 04/10] Fix issue markup --- docs/release.rst | 54 ++++++++++++++++++++++++------------------------ 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/docs/release.rst b/docs/release.rst index 29aba3ef10..099882d215 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -36,19 +36,19 @@ Bug fixes By :user:`Ryan Abernathey ` :issue:`1228`. * Remove unnecessary calling of `contains_array` for key that ended in `.array.json`. - By :user:`Joe Hamman ` :issue: `1149`. + By :user:`Joe Hamman ` :issue:`1149`. Documentation ~~~~~~~~~~~~~ * Fix minor indexing errors in tutorial and specification examples of documentation. - By :user:`Kola Babalola ` :issue: `1277`. + By :user:`Kola Babalola ` :issue:`1277`. * Add `requirements_rtfd.txt` in `contributing.rst`. - By :user:`AWA BRANDON AWA ` :issue: `1243`. + By :user:`AWA BRANDON AWA ` :issue:`1243`. * Add documentation for find/findall using visit - By :user:`Weddy Gikunda ` :issue: `1241`. + By :user:`Weddy Gikunda ` :issue:`1241`. Maintenance ~~~~~~~~~~~ @@ -87,73 +87,73 @@ Maintenance By :user:`Saransh Chopra ` :issue:`1271`. * Restore Flake8 configuration - By :user:`John Kirkham ` :issue: `1249`. + By :user:`John Kirkham ` :issue:`1249`. * Add missing newline at EOF - By :user:`Dimitri Papadopoulos` :issue: `1253`. + By :user:`Dimitri Papadopoulos` :issue:`1253`. * Add `license_files` to `pyproject.toml` - By :user:`John Kirkham ` :issue: `1247`. + By :user:`John Kirkham ` :issue:`1247`. * Adding `pyupgrade` suggestions - By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1225`. + By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1225`. * Fixed some linting errors. - By :user:`Weddy Gikunda ` :issue: `1226`. + By :user:`Weddy Gikunda ` :issue:`1226`. * Added the link to main website in readthedocs sidebar. - By :user:`Stephanie_nkwatoh ` :issue: `1216`. + By :user:`Stephanie_nkwatoh ` :issue:`1216`. * Remove redundant wheel dependency in `pyproject.toml` - By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1233`. + By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1233`. * Turned on `isloated_build` in `tox.ini` file - By :user:`AWA BRANDON AWA ` :issue: `1210`. + By :user:`AWA BRANDON AWA ` :issue:`1210`. * Fixed `flake8` alert and avoid duplication of `Zarr Developers`. - By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1203`. + By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1203`. * Bump to NumPy 1.20+ in `environment.yml` - By :user:`John Kirkham ` :issue: `1201`. + By :user:`John Kirkham ` :issue:`1201`. * Bump to NumPy 1.20 in `pyproject.toml` - By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1192`. + By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1192`. * Remove LGTM (`.lgtm.yml`) configuration file - By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1191`. + By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1191`. * Codespell will skip `fixture` in pre-commit - By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1197`. + By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1197`. * Add msgpack in `requirements_rtfd.txt` - By :user:`Emmanuel Bolarinwa ` :issue: `1188`. + By :user:`Emmanuel Bolarinwa ` :issue:`1188`. * Added license to docs fixed a typo from `_spec_v2` to `_spec_v3`. - By :user:`AWA BRANDON AWA ` :issue: `1182`. + By :user:`AWA BRANDON AWA ` :issue:`1182`. * Fixed installation link in `README.md` - By :user:`AWA BRANDON AWA ` :issue: `1177`. + By :user:`AWA BRANDON AWA ` :issue:`1177`. * Fixed typos in `installation.rst` and `release.rst` - By :user:`Chizoba Nweke ` :issue: `1178`. + By :user:`Chizoba Nweke ` :issue:`1178`. * Refresh of the main landing page - By :user:`Josh Moore ` :issue: `1173`. + By :user:`Josh Moore ` :issue:`1173`. * Set `docs/conf.py` language to `en` - By :user:`AWA BRANDON AWA ` :issue: `1174`. + By :user:`AWA BRANDON AWA ` :issue:`1174`. * Added `installation.rst` to the docs - By :user:`AWA BRANDON AWA ` :issue: `1170`. + By :user:`AWA BRANDON AWA ` :issue:`1170`. * Adjustment of year to `2015-2018` to `2015-2022` in the docs - By :user:`Emmanuel Bolarinwa ` :issue: `1165`. + By :user:`Emmanuel Bolarinwa ` :issue:`1165`. * Updated `Forking the repository` section in `contributing.rst` - By :user:`AWA BRANDON AWA ` :issue: `1171`. + By :user:`AWA BRANDON AWA ` :issue:`1171`. * Updated GitHub actions - By :user:`Dimitri Papadopoulos Orfanos ` :issue: `1134`. + By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1134`. * Fix bug that caused double counting of groups in ``groups()`` and ``group_keys()`` methods with V3 stores. From 4cdc50d4a63334ee70ccba0bd2ed1014bed67521 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Thu, 12 Jan 2023 08:23:34 +0100 Subject: [PATCH 05/10] Fix bullet points --- docs/release.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/release.rst b/docs/release.rst index 099882d215..2d5ac2403c 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -120,13 +120,13 @@ Maintenance By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1192`. * Remove LGTM (`.lgtm.yml`) configuration file - By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1191`. + By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1191`. * Codespell will skip `fixture` in pre-commit - By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1197`. + By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1197`. * Add msgpack in `requirements_rtfd.txt` - By :user:`Emmanuel Bolarinwa ` :issue:`1188`. + By :user:`Emmanuel Bolarinwa ` :issue:`1188`. * Added license to docs fixed a typo from `_spec_v2` to `_spec_v3`. By :user:`AWA BRANDON AWA ` :issue:`1182`. @@ -147,7 +147,7 @@ Maintenance By :user:`AWA BRANDON AWA ` :issue:`1170`. * Adjustment of year to `2015-2018` to `2015-2022` in the docs - By :user:`Emmanuel Bolarinwa ` :issue:`1165`. + By :user:`Emmanuel Bolarinwa ` :issue:`1165`. * Updated `Forking the repository` section in `contributing.rst` By :user:`AWA BRANDON AWA ` :issue:`1171`. From c9a43f14dd5d9ae763f071571dc908a68595b392 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Thu, 12 Jan 2023 08:25:40 +0100 Subject: [PATCH 06/10] Re-arrange some PRs --- docs/release.rst | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/docs/release.rst b/docs/release.rst index 2d5ac2403c..01df741adf 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -27,7 +27,8 @@ Major changes Enhancements ~~~~~~~~~~~~ -`NONE` +* Handle fsspec.FSMap using FSStore store + By :user:`Rafal Wojdyla ` :issue:`1304`. Bug fixes ~~~~~~~~~ @@ -38,6 +39,10 @@ Bug fixes * Remove unnecessary calling of `contains_array` for key that ended in `.array.json`. By :user:`Joe Hamman ` :issue:`1149`. +* Fix bug that caused double counting of groups in ``groups()`` and ``group_keys()`` + methods with V3 stores. + By :user:`Ryan Abernathey ` :issue:`1228`. + Documentation ~~~~~~~~~~~~~ @@ -50,6 +55,9 @@ Documentation * Add documentation for find/findall using visit By :user:`Weddy Gikunda ` :issue:`1241`. +* Refresh of the main landing page + By :user:`Josh Moore ` :issue:`1173`. + Maintenance ~~~~~~~~~~~ @@ -137,9 +145,6 @@ Maintenance * Fixed typos in `installation.rst` and `release.rst` By :user:`Chizoba Nweke ` :issue:`1178`. -* Refresh of the main landing page - By :user:`Josh Moore ` :issue:`1173`. - * Set `docs/conf.py` language to `en` By :user:`AWA BRANDON AWA ` :issue:`1174`. @@ -155,13 +160,6 @@ Maintenance * Updated GitHub actions By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1134`. -* Fix bug that caused double counting of groups in ``groups()`` and ``group_keys()`` - methods with V3 stores. - By :user:`Ryan Abernathey ` :issue:`1228`. - -* Handle fsspec.FSMap using FSStore store - By :user:`Rafal Wojdyla ` :issue:`1304`. - .. _release_2.13.3: 2.13.3 From 475d4a22496d13ae75e8e3321611f55051af5f62 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Thu, 12 Jan 2023 13:57:21 +0100 Subject: [PATCH 07/10] Update docs/release.rst Co-authored-by: Sanket Verma --- docs/release.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release.rst b/docs/release.rst index 01df741adf..d5e691dd75 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -27,7 +27,7 @@ Major changes Enhancements ~~~~~~~~~~~~ -* Handle fsspec.FSMap using FSStore store +* Handle fsspec.FSMap using FSStore store. By :user:`Rafal Wojdyla ` :issue:`1304`. Bug fixes From 560cff0c6e1f43d280448759cfafd44303d05903 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Thu, 12 Jan 2023 13:58:09 +0100 Subject: [PATCH 08/10] Update docs/release.rst Co-authored-by: Sanket Verma --- docs/release.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release.rst b/docs/release.rst index d5e691dd75..6f6941ef34 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -154,7 +154,7 @@ Maintenance * Adjustment of year to `2015-2018` to `2015-2022` in the docs By :user:`Emmanuel Bolarinwa ` :issue:`1165`. -* Updated `Forking the repository` section in `contributing.rst` +* Updated `Forking the repository` section in `contributing.rst`. By :user:`AWA BRANDON AWA ` :issue:`1171`. * Updated GitHub actions From be8e00c30a96a12bbec350643c8954c933ba465b Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Thu, 12 Jan 2023 13:59:36 +0100 Subject: [PATCH 09/10] Apply suggestions from code review Co-authored-by: Sanket Verma --- docs/release.rst | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/docs/release.rst b/docs/release.rst index 6f6941ef34..45564ec9bd 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -52,10 +52,10 @@ Documentation * Add `requirements_rtfd.txt` in `contributing.rst`. By :user:`AWA BRANDON AWA ` :issue:`1243`. -* Add documentation for find/findall using visit +* Add documentation for find/findall using visit. By :user:`Weddy Gikunda ` :issue:`1241`. -* Refresh of the main landing page +* Refresh of the main landing page. By :user:`Josh Moore ` :issue:`1173`. Maintenance @@ -91,19 +91,19 @@ Maintenance * Delete unused files. By :user:`John Kirkham ` :issue:`1251`. -* Skip labeler for bot PRs +* Skip labeller for bot PRs. By :user:`Saransh Chopra ` :issue:`1271`. -* Restore Flake8 configuration +* Restore Flake8 configuration. By :user:`John Kirkham ` :issue:`1249`. -* Add missing newline at EOF +* Add missing newline at EOF. By :user:`Dimitri Papadopoulos` :issue:`1253`. -* Add `license_files` to `pyproject.toml` +* Add `license_files` to `pyproject.toml`. By :user:`John Kirkham ` :issue:`1247`. -* Adding `pyupgrade` suggestions +* Adding `pyupgrade` suggestions. By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1225`. * Fixed some linting errors. @@ -112,46 +112,46 @@ Maintenance * Added the link to main website in readthedocs sidebar. By :user:`Stephanie_nkwatoh ` :issue:`1216`. -* Remove redundant wheel dependency in `pyproject.toml` +* Remove redundant wheel dependency in `pyproject.toml`. By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1233`. -* Turned on `isloated_build` in `tox.ini` file +* Turned on `isloated_build` in `tox.ini` file. By :user:`AWA BRANDON AWA ` :issue:`1210`. * Fixed `flake8` alert and avoid duplication of `Zarr Developers`. By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1203`. -* Bump to NumPy 1.20+ in `environment.yml` +* Bump to NumPy 1.20+ in `environment.yml`. By :user:`John Kirkham ` :issue:`1201`. -* Bump to NumPy 1.20 in `pyproject.toml` +* Bump to NumPy 1.20 in `pyproject.toml`. By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1192`. -* Remove LGTM (`.lgtm.yml`) configuration file +* Remove LGTM (`.lgtm.yml`) configuration file. By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1191`. -* Codespell will skip `fixture` in pre-commit +* Codespell will skip `fixture` in pre-commit. By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1197`. -* Add msgpack in `requirements_rtfd.txt` +* Add msgpack in `requirements_rtfd.txt`. By :user:`Emmanuel Bolarinwa ` :issue:`1188`. * Added license to docs fixed a typo from `_spec_v2` to `_spec_v3`. By :user:`AWA BRANDON AWA ` :issue:`1182`. -* Fixed installation link in `README.md` +* Fixed installation link in `README.md`. By :user:`AWA BRANDON AWA ` :issue:`1177`. -* Fixed typos in `installation.rst` and `release.rst` +* Fixed typos in `installation.rst` and `release.rst`. By :user:`Chizoba Nweke ` :issue:`1178`. -* Set `docs/conf.py` language to `en` +* Set `docs/conf.py` language to `en`. By :user:`AWA BRANDON AWA ` :issue:`1174`. -* Added `installation.rst` to the docs +* Added `installation.rst` to the docs. By :user:`AWA BRANDON AWA ` :issue:`1170`. -* Adjustment of year to `2015-2018` to `2015-2022` in the docs +* Adjustment of year to `2015-2018` to `2015-2022` in the docs. By :user:`Emmanuel Bolarinwa ` :issue:`1165`. * Updated `Forking the repository` section in `contributing.rst`. From 19ca04946f94361b7c52fd2b0b1d3182fec2c2c6 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Mon, 16 Jan 2023 14:32:39 +0100 Subject: [PATCH 10/10] Update docs/release.rst Co-authored-by: Sanket Verma --- docs/release.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/release.rst b/docs/release.rst index 7cc31bd06e..7ffd751696 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -19,10 +19,11 @@ Release notes 2.13.4 ------ -Major changes +Appreciation ~~~~~~~~~~~~~ -`NONE` +Special thanks to Outreachy participants for contributing to most of the maintenance PRs. Please read the blog post summarising the contribution phase and welcoming new Outreachy interns: https://zarr.dev/blog/welcoming-outreachy-2022-interns/ + Enhancements ~~~~~~~~~~~~