mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
134603540b
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.18.1 to 1.19.0. - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.18.1...v1.19.0) --- updated-dependencies: - dependency-name: github.com/onsi/gomega dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
653 B
Markdown
17 lines
653 B
Markdown
A Gomega release is a tagged sha and a GitHub release. To cut a release:
|
|
|
|
1. Ensure CHANGELOG.md is up to date.
|
|
- Use `git log --pretty=format:'- %s [%h]' HEAD...vX.X.X` to list all the commits since the last release
|
|
- Categorize the changes into
|
|
- Breaking Changes (requires a major version)
|
|
- New Features (minor version)
|
|
- Fixes (fix version)
|
|
- Maintenance (which in general should not be mentioned in `CHANGELOG.md` as they have no user impact)
|
|
1. Update GOMEGA_VERSION in `gomega_dsl.go`
|
|
1. Commit, push, and release:
|
|
```
|
|
git commit -m "vM.m.p"
|
|
git push
|
|
gh release create "vM.m.p"
|
|
git fetch --tags origin master
|
|
``` |