From dbd4cb504ac2e8b5cdbeb204e9c75447f56cc39a Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Mon, 27 Feb 2023 21:03:16 -0700 Subject: [PATCH] v1.27.2 --- CHANGELOG.md | 9 +++++++++ gomega_dsl.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99ea94078..237aac330 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.27.2 + +### Fixes +- improve poll progress message when polling a consistently that has been passing [28a319b] + +### Maintenance +- bump ginkgo +- remove tools.go hack as Ginkgo 2.8.2 automatically pulls in the cli dependencies [81443b3] + ## 1.27.1 ### Maintenance diff --git a/gomega_dsl.go b/gomega_dsl.go index c105a31d8..21dfa5c95 100644 --- a/gomega_dsl.go +++ b/gomega_dsl.go @@ -22,7 +22,7 @@ import ( "github.com/onsi/gomega/types" ) -const GOMEGA_VERSION = "1.27.1" +const GOMEGA_VERSION = "1.27.2" 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().