diff --git a/5.x/contributing/release/index.html b/5.x/contributing/release/index.html index 83351fd06..5c527b334 100644 --- a/5.x/contributing/release/index.html +++ b/5.x/contributing/release/index.html @@ -890,38 +890,44 @@
Steps to follow:
main
into versions/x.0.0
.npm run release -- -r major
or npx standard-version -r major
chore(release): Update configs to vx.0.0
.package.json
, generate a tag, and generate the new entries in CHANGELOG.md
. Commited with chore(release): Release version vx0.0 of the npm package
--dry-run
to the above command to preview the commands that will be run and the changes to CHANGELOG.md
.CHANGELOG.md
.git add CHANGELOG.md && git commit --amend --no-edit --no-verify
to add manual changes to the release commit.git push --follow-tags
RELEASE_NOTES.md
are correct.npm run release -- -r major
chore(release): Update configs to vx.0.0
.package.json
, and generates the new entries in CHANGELOG.md
. Commited with chore(release): Release version vx.0.0 of the npm package
npx commit-and-tag-version -r major --dry-run
to preview the commands that will be run and the changes to CHANGELOG.md
.postrelease
script will now prompt you to manually edit the CHANGELOG.md
.postrelease
script will amend the release commit, create an annotated tag and push changes to origin.versions/x.0.0
into main
and push.npm publish
npm publish
next
tag that needs to be replaced.versions/x.0.0
branch to the next version..github/workflows/schedule.yml
and .github/dependabot.yml
to point at the new branch.Changes when doing a pre-release of a major version:
npm release -- -r major --pre-release alpha
npm run release -- -r major --prerelease alpha
versions/x.0.0
into main
.npm publish --tag next
.