This document describes how to release a new version of MCing.
Follow semantic versioning 2.0.0 to choose a new version number.
-
Determine a new version number. Export it as an environment variable:
$ VERSION=1.2.3
-
Make a new branch from the latest
main
withgit checkout -b release/v$VERSION
-
Update version strings in
kustomization.yaml
. -
Commit the change and create a pull request:
$ git commit -a -m "Bump version to $VERSION" $ git push origin release/v$VERSION
-
Merge the new pull request. Push tag automatically.
You may edit the GitHub release page to add further details.