From 2e349791b418de459ab3ac4b8e01cd544ae75de0 Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Thu, 6 Oct 2022 14:45:08 -0600 Subject: [PATCH] v1.21.1 --- CHANGELOG.md | 5 +++++ gomega_dsl.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac9739802..c5f35de69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v1.21.1 + +### Features +- Eventually and Consistently that are passed a SpecContext can provide reports when an interrupt occurs [0d063c9] + ## 1.21.0 ### Features diff --git a/gomega_dsl.go b/gomega_dsl.go index ac38a185e..274116fd4 100644 --- a/gomega_dsl.go +++ b/gomega_dsl.go @@ -22,7 +22,7 @@ import ( "github.com/onsi/gomega/types" ) -const GOMEGA_VERSION = "1.21.0" +const GOMEGA_VERSION = "1.21.1" const nilGomegaPanic = `You are trying to make an assertion, but haven't registered Gomega's fail handler. If you're using Ginkgo then you probably forgot to put your assertion in an It().