From f1bd54ad576396c70d46d18128b05aeee2c01407 Mon Sep 17 00:00:00 2001 From: Ezra Chung Date: Mon, 2 Dec 2024 10:55:40 -0600 Subject: [PATCH] Update post-release instructions for non-patch releases --- etc/releasing.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/etc/releasing.md b/etc/releasing.md index bb4a3c95f3..1d4e1f2a8f 100644 --- a/etc/releasing.md +++ b/etc/releasing.md @@ -829,6 +829,27 @@ Sync the entries in the patch release section to be consistent with the entries #### ... for a Non-Patch Release +Checkout the `releases/vX.Y` release branch. + +```bash +git checkout releases/vX.Y +git pull +``` + +Add a section for the next patch release, e.g. following a `1.2.0` release: + +```md +## 1.2.1 [Unreleased] + + + +## 1.2.0 + +## 1.1.0 +``` + +Commit the changes to the `releases/vX.Y` branch and push the branch to the remote repository (a PR is not required for this step). + Checkout the `post-release-changes` branch. Add a section for the next minor release, e.g. following a `1.3.0` release: