From 8a885c1891f84536a3b4a15c03a61bfa132d180f Mon Sep 17 00:00:00 2001 From: Maximilian Roos <5635139+max-sixty@users.noreply.github.com> Date: Fri, 28 Jan 2022 14:16:06 -0800 Subject: [PATCH] Add release notes for v0.21.0 (#6203) * Add release notes for v0.21.0 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update doc/whats-new.rst Co-authored-by: Deepak Cherian Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Deepak Cherian --- HOW_TO_RELEASE.md | 4 ++-- doc/whats-new.rst | 19 ++++++++++++------- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/HOW_TO_RELEASE.md b/HOW_TO_RELEASE.md index 16dc3b94196..33a4fb9bfc3 100644 --- a/HOW_TO_RELEASE.md +++ b/HOW_TO_RELEASE.md @@ -25,11 +25,11 @@ upstream https://github.com/pydata/xarray (push) ``` 3. Add a list of contributors with: ```sh - git log "$(git tag --sort="v:refname" | tail -1).." --format=%aN | sort -u | perl -pe 's/\n/$1, /' + git log "$(git tag --sort=v:refname | tail -1).." --format=%aN | sort -u | perl -pe 's/\n/$1, /' ``` This will return the number of contributors: ```sh - git log $(git tag --sort="v:refname" | tail -1).. --format=%aN | sort -u | wc -l + git log "$(git tag --sort=v:refname | tail -1).." --format=%aN | sort -u | wc -l ``` 4. Write a release summary: ~50 words describing the high level features. This will be used in the release emails, tweets, GitHub release notes, etc. diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 50500e3d75f..ef4a6c75523 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -14,10 +14,19 @@ What's New np.random.seed(123456) -.. _whats-new.0.X.Y+1: +.. _whats-new.0.21.0: + +v0.21.0 (27 January 2022) +------------------------- + +Many thanks to the 20 contributors to the v0.21.0 release! + +Abel Aoun, Anderson Banihirwe, Ant Gib, Chris Roat, Cindy Chiao, +Deepak Cherian, Dominik StaƄczak, Fabian Hofmann, Illviljan, Jody Klymak, Joseph +K Aicher, Mark Harfouche, Mathias Hauser, Matthew Roeschke, Maximilian Roos, +Michael Delgado, Pascal Bourgault, Pierre, Ray Bell, Romain Caneill, Tim Heap, +Tom Nicholas, Zeb Nicholls, joseph nowak, keewis. -v0.21.0 (unreleased) ---------------------- New Features ~~~~~~~~~~~~ @@ -65,10 +74,6 @@ Bug fixes By `Pierre Loicq `_. - Determination of zarr chunks handles empty lists for encoding chunks or variable chunks that occurs in certain cirumstances (:pull:`5526`). By `Chris Roat `_. -Documentation -~~~~~~~~~~~~~ - - Internal Changes ~~~~~~~~~~~~~~~~