From dbc6ecdcc526d81592dab902de6cbaf7be9a8a13 Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Wed, 26 May 2021 19:22:04 -0600 Subject: [PATCH] v1.13.0 --- CHANGELOG.md | 6 ++++++ gomega_dsl.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b05f3a935..4783c0d43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.13.0 + +### Features +- gmeasure provides BETA support for benchmarking (#447) [8f2dfbf] +- Set consistently and eventually defaults on init (#443) [12eb778] + ## 1.12.0 ### Features diff --git a/gomega_dsl.go b/gomega_dsl.go index 9050e15e8..a05b34b27 100644 --- a/gomega_dsl.go +++ b/gomega_dsl.go @@ -24,7 +24,7 @@ import ( "github.com/onsi/gomega/types" ) -const GOMEGA_VERSION = "1.12.0" +const GOMEGA_VERSION = "1.13.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().