Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions etc/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

<!-- Will contain entries for the next patch release. -->

## 1.2.0 <!-- Just released. -->

## 1.1.0 <!-- Prior release. -->
```

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:
Expand Down