Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 772 Bytes

RELEASING.md

File metadata and controls

24 lines (15 loc) · 772 Bytes

Releasing

Releasing checklist:

(1) Write a changelog.

(2) Checkout the branch to be released. This should be main except in the event of a hotfix. For hotfixes, checkout the latest release branch.

(3) Create a tag for the release.

git tag v0.2.0

(4) Push the tag to the main repository, triggering the CI and release process.

git push origin v0.2.0

Note that the CI automatically:

  • Updates the SPDX identifiers and antora.yml versions with the pushed tag
  • Creates a release branch and adds a tag to it. This can be useful if we need to push a hot fix on top of an existing release in the case of a bug.