From 2cc2219b4ec8630df2ee1b112237b4ae56da1a75 Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Wed, 12 Oct 2022 14:37:53 -0600 Subject: [PATCH] v2.3.1 --- CHANGELOG.md | 13 +++++++++++++ types/version.go | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88f458118..67625eb28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 2.3.1 + +## Fixes +Several users were invoking `ginkgo` by installing the latest version of the cli via `go install github.com/onsi/ginkgo/v2/ginkgo@latest`. When 2.3.0 was released this resulted in an influx of issues as CI systems failed due to a change in the internal contract between the Ginkgo CLI and the Ginkgo library. Ginkgo only supports running the same version of the library as the cli (which is why both are packaged in the same repository). + +With this patch release, the ginkgo CLI can now identify a version mismatch and emit a helpful error message. + +- Ginkgo cli can identify version mismatches and emit a helpful error message [bc4ae2f] +- further emphasize that a version match is required when running Ginkgo on CI and/or locally [2691dd8] + +## Maintenance +- bump gomega to v1.22.0 [822a937] + ## 2.3.0 ### Interruptible Nodes and Timeouts diff --git a/types/version.go b/types/version.go index 9711fe352..a4ea12a9e 100644 --- a/types/version.go +++ b/types/version.go @@ -1,3 +1,3 @@ package types -const VERSION = "2.3.0" +const VERSION = "2.3.1"