Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo) from 1.14.0 to 1.16.5. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v1.14.0...v1.16.5) --- updated-dependencies: - dependency-name: github.com/onsi/ginkgo dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
655 B
655 B
A Ginkgo release is a tagged git sha and a GitHub release. To cut a release:
- Ensure CHANGELOG.md is up to date.
- Use
git log --pretty=format:'- %s [%h]' HEAD...vX.X.Xto 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.mdas they have no user impact)
- Update
VERSIONinconfig/config.go - Commit, push, and release:
git commit -m "vM.m.p"
git push
gh release create "vM.m.p"
git fetch --tags origin master