From 762b171852113d80d8fc360558cccbccdc46af70 Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Fri, 19 Jan 2024 07:06:09 -0700 Subject: [PATCH] v1.31.1 --- CHANGELOG.md | 11 +++++++++++ gomega_dsl.go | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fece58b11..9a14b8151 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 1.31.1 + +### Fixes +- Inverted arguments order of FailureMessage of BeComparableToMatcher [e0dd999] +- Update test in case keeping msg is desired [ad1a367] + +### Maintenance +- Show how to import the format sub package [24e958d] +- tidy up go.sum [26661b8] +- bump dependencies [bde8f7a] + ## 1.31.0 ### Features diff --git a/gomega_dsl.go b/gomega_dsl.go index 4f7ab2791..5b46a1658 100644 --- a/gomega_dsl.go +++ b/gomega_dsl.go @@ -22,7 +22,7 @@ import ( "github.com/onsi/gomega/types" ) -const GOMEGA_VERSION = "1.31.0" +const GOMEGA_VERSION = "1.31.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().