Skip to content

Commit

Permalink
v1.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
onsi committed Nov 2, 2022
1 parent 756eaa0 commit ed1156b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,15 @@
## 1.24.0

### Features

Introducting [gcustom](https://onsi.github.io/gomega/#gcustom-a-convenient-mechanism-for-buildling-custom-matchers) - a convenient mechanism for building custom matchers.

This is an RC release for `gcustom`. The external API may be tweaked in response to feedback however it is expected to remain mostly stable.

### Maintenance

- Update BeComparableTo documentation [756eaa0]

## 1.23.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Expand Up @@ -5,7 +5,7 @@ A Gomega release is a tagged sha and a GitHub release. To cut a release:
```bash
LAST_VERSION=$(git tag --sort=version:refname | tail -n1)
CHANGES=$(git log --pretty=format:'- %s [%h]' HEAD...$LAST_VERSION)
echo -e "## NEXT\n\n$CHANGES\n\n### Features\n\n## Fixes\n\n## Maintenance\n\n$(cat CHANGELOG.md)" > CHANGELOG.md
echo -e "## NEXT\n\n$CHANGES\n\n### Features\n\n### Fixes\n\n### Maintenance\n\n$(cat CHANGELOG.md)" > CHANGELOG.md
```
to update the changelog
- Categorize the changes into
Expand Down
2 changes: 1 addition & 1 deletion gomega_dsl.go
Expand Up @@ -22,7 +22,7 @@ import (
"github.com/onsi/gomega/types"
)

const GOMEGA_VERSION = "1.23.0"
const GOMEGA_VERSION = "1.24.0"

const nilGomegaPanic = `You are trying to make an assertion, but haven't registered Gomega's fail handler.
If you're using Ginkgo then you probably forgot to put your assertion in an It().
Expand Down

0 comments on commit ed1156b

Please sign in to comment.