From 22a9feb22fe99439870ed2e013401725a9d495df Mon Sep 17 00:00:00 2001 From: George Blue Date: Thu, 19 Dec 2019 15:55:55 +0000 Subject: [PATCH] v1.8.1 Co-authored-by: Marcela Campo --- CHANGELOG.md | 5 +++++ gomega_dsl.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23e9c853b..59ad384aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.8.1 + +### Fixes +- Fix unexpected MatchError() behaviour (#375) [8ae7b2f] + ## 1.8.0 ### Features diff --git a/gomega_dsl.go b/gomega_dsl.go index e1cb50325..4cb94d22f 100644 --- a/gomega_dsl.go +++ b/gomega_dsl.go @@ -24,7 +24,7 @@ import ( "github.com/onsi/gomega/types" ) -const GOMEGA_VERSION = "1.8.0" +const GOMEGA_VERSION = "1.8.1" 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().