diff --git a/doc/contribute-to-core-lightning/release-checklist.md b/doc/contribute-to-core-lightning/release-checklist.md index 99005142074e..119df2aa1ce2 100644 --- a/doc/contribute-to-core-lightning/release-checklist.md +++ b/doc/contribute-to-core-lightning/release-checklist.md @@ -110,8 +110,8 @@ Here's a checklist for the release process. 1. Create a new branch named `release-.`, where each new branch is based on the commit from the previous release tag. For example, `release-.1` is based on `release-`, `release-.2` is based on `release-.1`, and so on. 2. Cherry-pick all necessary commits for the hotfix into the new branch. 3. Add entries for changes and fixed issues in `CHANGELOG.md` under a new heading for `v.`. -4. Update the python package versions by running `make update-py-versions NEW_VERSION=.` -5. Create a new commit that includes the updates from `update-py-versions` and `CHANGELOG.md`. +4. Update the python package versions by running `make update-versions NEW_VERSION=.` +5. Create a new commit that includes the updates from `update-versions` and `CHANGELOG.md`. 6. Tag the release with `git pull && git tag -s v.`. You will be prompted to enter a tag message, ensure this is filled out. 7. Confirm that the tag is properly set up for builds by running `git describe`. 8. Push the tag to the remote repository `git push --tags`.