You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
776 B

  1. A Gomega release is a tagged sha and a GitHub release. To cut a release:
  2. 1. Ensure CHANGELOG.md is up to date.
  3. - Use `git log --pretty=format:'- %s [%h]' HEAD...vX.X.X` to list all the commits since the last release
  4. - Categorize the changes into
  5. - Breaking Changes (requires a major version)
  6. - New Features (minor version)
  7. - Fixes (fix version)
  8. - Maintenance (which in general should not be mentioned in `CHANGELOG.md` as they have no user impact)
  9. 2. Update GOMEGA_VERSION in `gomega_dsl.go`
  10. 3. Push a commit with the version number as the commit message (e.g. `v1.3.0`)
  11. 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.