From 7cabed651e981da0c7d0219ad7208626cef58016 Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Wed, 28 Aug 2024 09:18:15 -0600 Subject: [PATCH] v1.34.2 --- CHANGELOG.md | 8 ++++++++ gomega_dsl.go | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6c34d65..7972bbc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.34.2 + +Require Go 1.22+ + +### Maintenance +- bump ginkgo as well [c59c6dc] +- bump to go 1.22 - remove x/exp dependency [8158b99] + ## 1.34.1 ### Maintenance diff --git a/gomega_dsl.go b/gomega_dsl.go index 2546ccce..edacf8c1 100644 --- a/gomega_dsl.go +++ b/gomega_dsl.go @@ -22,7 +22,7 @@ import ( "github.com/onsi/gomega/types" ) -const GOMEGA_VERSION = "1.34.1" +const GOMEGA_VERSION = "1.34.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().