Skip to content

Commit

Permalink
update RELEASING instructions to match ginkgo
Browse files Browse the repository at this point in the history
  • Loading branch information
onsi committed Mar 25, 2022
1 parent 49ab4b0 commit 0917cde
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions RELEASING.md
Expand Up @@ -7,6 +7,11 @@ A Gomega release is a tagged sha and a GitHub release. To cut a release:
- New Features (minor version)
- Fixes (fix version)
- Maintenance (which in general should not be mentioned in `CHANGELOG.md` as they have no user impact)
2. Update GOMEGA_VERSION in `gomega_dsl.go`
3. Push a commit with the version number as the commit message (e.g. `v1.3.0`)
4. 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. 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
```

0 comments on commit 0917cde

Please sign in to comment.