From 546170b0b9468c25bdb85712975c5a7f3c540ee9 Mon Sep 17 00:00:00 2001 From: David Ansari Date: Wed, 18 Dec 2019 17:32:48 +0000 Subject: [PATCH] v1.8.0 --- CHANGELOG.md | 6 ++++++ gomega_dsl.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecbdd2734..23e9c853b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.8.0 + +### Features +- Allow optional description to be lazily evaluated function (#364) [bf64010] +- Support wrapped errors (#359) [0a981cb] + ## 1.7.1 ### Fixes diff --git a/gomega_dsl.go b/gomega_dsl.go index ba0026071..e1cb50325 100644 --- a/gomega_dsl.go +++ b/gomega_dsl.go @@ -24,7 +24,7 @@ import ( "github.com/onsi/gomega/types" ) -const GOMEGA_VERSION = "1.7.1" +const GOMEGA_VERSION = "1.8.0" 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().