From f1ff459a1aa4fb0000c65d4051b09d669a09d346 Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Mon, 25 Nov 2024 06:08:27 -0700 Subject: [PATCH] v1.36.0 --- CHANGELOG.md | 9 +++++++++ gomega_dsl.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f6090b8d..b797577ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.36.0 + +### Features +- new: make collection-related matchers Go 1.23 iterator aware [4c964c6] + +### Maintenance +- Replace min/max helpers with built-in min/max [ece6872] +- Fix some typos in docs [8e924d7] + ## 1.35.1 ### Fixes diff --git a/gomega_dsl.go b/gomega_dsl.go index 1038d7dd4..eb74f6f6a 100644 --- a/gomega_dsl.go +++ b/gomega_dsl.go @@ -22,7 +22,7 @@ import ( "github.com/onsi/gomega/types" ) -const GOMEGA_VERSION = "1.35.1" +const GOMEGA_VERSION = "1.36.0" 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().