Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 880 Bytes

RELEASE.md

File metadata and controls

33 lines (21 loc) · 880 Bytes

Release procedure

This document describes how to release a new version of MCing.

Versioning

Follow semantic versioning 2.0.0 to choose a new version number.

Bump version

  1. Determine a new version number. Export it as an environment variable:

    $ VERSION=1.2.3
  2. Make a new branch from the latest main with git checkout -b release/v$VERSION

  3. Update version strings in kustomization.yaml.

  4. Commit the change and create a pull request:

    $ git commit -a -m "Bump version to $VERSION"
    $ git push origin release/v$VERSION
  5. Merge the new pull request. Push tag automatically.

(Option) Edit GitHub release page

You may edit the GitHub release page to add further details.