Files
c/RELEASE.md

17 lines
696 B
Markdown
Raw Normal View History

2020-03-17 07:59:06 -04:00
# Release Process
2022-02-26 11:50:46 +08:00
The Kubernetes C Client Project is released on an as-needed basis. The process is as follows:
2020-03-17 07:59:06 -04:00
1. An issue is proposing a new release with a changelog since the last release
1. All [OWNERS](OWNERS) must LGTM this release
1. 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`
2022-02-26 11:50:46 +08:00
e.g
```shell
git tag -a v0.1.0 -m "version 0.1.0"
git push origin v0.1.0
2022-02-26 11:50:46 +08:00
```
2020-03-17 07:59:06 -04:00
1. The release issue is closed
1. An announcement email is sent to `kubernetes-dev@googlegroups.com` with the subject `[ANNOUNCE] kubernetes-template-project $VERSION is released`