diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-06-03 11:26:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-03 11:26:03 +0200 |
commit | b64e20a53d3f5de262f2c475be490b35977d5f32 (patch) | |
tree | 9b81ce40128f76ebb6838e52627b0436da08bc58 /vendor/github.com/onsi/ginkgo/RELEASING.md | |
parent | 52dae693da0df1447b7f5210a4c842d5c5a8a401 (diff) | |
parent | 366016fa8509372bef9c9287bd1c92682f5fe1ac (diff) | |
download | podman-b64e20a53d3f5de262f2c475be490b35977d5f32.tar.gz podman-b64e20a53d3f5de262f2c475be490b35977d5f32.tar.bz2 podman-b64e20a53d3f5de262f2c475be490b35977d5f32.zip |
Merge pull request #10540 from containers/dependabot/go_modules/github.com/onsi/ginkgo-1.16.4
Bump github.com/onsi/ginkgo from 1.16.3 to 1.16.4
Diffstat (limited to 'vendor/github.com/onsi/ginkgo/RELEASING.md')
-rw-r--r-- | vendor/github.com/onsi/ginkgo/RELEASING.md | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/vendor/github.com/onsi/ginkgo/RELEASING.md b/vendor/github.com/onsi/ginkgo/RELEASING.md index 1e298c2da..db3d234c1 100644 --- a/vendor/github.com/onsi/ginkgo/RELEASING.md +++ b/vendor/github.com/onsi/ginkgo/RELEASING.md @@ -8,7 +8,10 @@ A Ginkgo release is a tagged git sha and a GitHub release. To cut a release: - Fixes (fix version) - Maintenance (which in general should not be mentioned in `CHANGELOG.md` as they have no user impact) 1. Update `VERSION` in `config/config.go` -1. Create a commit with the version number as the commit message (e.g. `v1.3.0`) -1. Tag the commit with the version number as the tag name (e.g. `v1.3.0`) -1. Push the commit and tag to GitHub -1. Create a new [GitHub release](https://help.github.com/articles/creating-releases/) with the version number as the tag (e.g. `v1.3.0`). List the key changes in the release notes. +1. Commit, push, and release: + ``` + git commit -m "vM.m.p" + git push + gh release create "vM.m.p" + git fetch --tags origin master + ```
\ No newline at end of file |