Files
c/RELEASE.md
2022-04-06 16:56:13 +08:00

696 B

Release Process

The Kubernetes C Client Project is released on an as-needed basis. The process is as follows:

  1. An issue is proposing a new release with a changelog since the last release

  2. All OWNERS must LGTM this release

  3. An OWNER runs git tag -s $VERSION or git tag -a $VERSION (If GPG-signed tag is not required) and inserts the changelog and pushes the tag with git push origin $VERSION

    e.g

    git tag -a v0.1.0 -m "version 0.1.0"
    git push origin v0.1.0
    
  4. The release issue is closed

  5. An announcement email is sent to kubernetes-dev@googlegroups.com with the subject [ANNOUNCE] kubernetes-template-project $VERSION is released