From 9cbf7b0019d4d489d668583b0d7a6ac889ee2bc8 Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Mon, 24 Jul 2023 06:44:53 -0600 Subject: [PATCH] v1.27.10 --- CHANGELOG.md | 5 +++++ gomega_dsl.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb9d597d8..1526497b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.27.10 + +### Fixes +- fix: go 1.21 adding goroutine ID to creator+location (#685) [bdc7803] + ## 1.27.9 ### Fixes diff --git a/gomega_dsl.go b/gomega_dsl.go index 4d4cbaa76..1fd1803ac 100644 --- a/gomega_dsl.go +++ b/gomega_dsl.go @@ -22,7 +22,7 @@ import ( "github.com/onsi/gomega/types" ) -const GOMEGA_VERSION = "1.27.9" +const GOMEGA_VERSION = "1.27.10" 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().