Skip to content

Commit ed1156b

Browse files
committed
v1.24.0
1 parent 756eaa0 commit ed1156b

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 1.24.0
2+
3+
### Features
4+
5+
Introducting [gcustom](https://onsi.github.io/gomega/#gcustom-a-convenient-mechanism-for-buildling-custom-matchers) - a convenient mechanism for building custom matchers.
6+
7+
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.
8+
9+
### Maintenance
10+
11+
- Update BeComparableTo documentation [756eaa0]
12+
113
## 1.23.0
214

315
### Features

RELEASING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A Gomega release is a tagged sha and a GitHub release. To cut a release:
55
```bash
66
LAST_VERSION=$(git tag --sort=version:refname | tail -n1)
77
CHANGES=$(git log --pretty=format:'- %s [%h]' HEAD...$LAST_VERSION)
8-
echo -e "## NEXT\n\n$CHANGES\n\n### Features\n\n## Fixes\n\n## Maintenance\n\n$(cat CHANGELOG.md)" > CHANGELOG.md
8+
echo -e "## NEXT\n\n$CHANGES\n\n### Features\n\n### Fixes\n\n### Maintenance\n\n$(cat CHANGELOG.md)" > CHANGELOG.md
99
```
1010
to update the changelog
1111
- Categorize the changes into

gomega_dsl.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"github.com/onsi/gomega/types"
2323
)
2424

25-
const GOMEGA_VERSION = "1.23.0"
25+
const GOMEGA_VERSION = "1.24.0"
2626

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

0 commit comments

Comments
 (0)