From 3e036b855ae3e332843aff25edf11a0a37033156 Mon Sep 17 00:00:00 2001 From: George Blue Date: Mon, 1 Feb 2021 21:58:41 +0000 Subject: [PATCH] v1.10.5 --- CHANGELOG.md | 7 +++++++ gomega_dsl.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f1765d84..16095fa3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.10.5 + +### Fixes +- fix: collections matchers should display type of expectation (#408) [6b4eb5a] +- fix(ContainElements): consistently flatten expected values [073b880] +- fix(ConsistOf): consistently flatten expected values [7266efe] + ## 1.10.4 ### Fixes diff --git a/gomega_dsl.go b/gomega_dsl.go index a8529f1ca..1bc5288b8 100644 --- a/gomega_dsl.go +++ b/gomega_dsl.go @@ -24,7 +24,7 @@ import ( "github.com/onsi/gomega/types" ) -const GOMEGA_VERSION = "1.10.4" +const GOMEGA_VERSION = "1.10.5" const nilFailHandlerPanic = `You are trying to make an assertion, but Gomega's fail handler is nil. If you're using Ginkgo then you probably forgot to put your assertion in an It().