From 9299761f1714a2a9057916ef0ecdd86011c5ced2 Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Sun, 23 Oct 2022 12:02:52 -0600 Subject: [PATCH] v2.4.0 --- CHANGELOG.md | 24 +++++++++++++++++++++++- RELEASING.md | 2 +- types/version.go | 2 +- 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67625eb28..05a41bd6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +## 2.4.0 + +### Features + +- DeferCleanup supports functions with multiple-return values [5e33c75] +- Add GinkgoLogr (#1067) [bf78c28] +- Introduction of 'MustPassRepeatedly' decorator (#1051) [047c02f] + +### Fixes +- correcting some typos (#1064) [1403d3c] +- fix flaky internal_integration interupt specs [2105ba3] +- Correct busted link in README [be6b5b9] + +### Maintenance +- Bump actions/checkout from 2 to 3 (#1062) [8a2f483] +- Bump golang.org/x/tools from 0.1.12 to 0.2.0 (#1065) [529c4e8] +- Bump github/codeql-action from 1 to 2 (#1061) [da09146] +- Bump actions/setup-go from 2 to 3 (#1060) [918040d] +- Bump github.com/onsi/gomega from 1.22.0 to 1.22.1 (#1053) [2098e4d] +- Bump nokogiri from 1.13.8 to 1.13.9 in /docs (#1066) [1d74122] +- Add GHA to dependabot config [4442772] + ## 2.3.1 ## Fixes @@ -8,7 +30,7 @@ With this patch release, the ginkgo CLI can now identify a version mismatch and - 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 +### Maintenance - bump gomega to v1.22.0 [822a937] ## 2.3.0 diff --git a/RELEASING.md b/RELEASING.md index 1d5a4ff70..363815d7c 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -5,7 +5,7 @@ A Ginkgo release is a tagged git sha and a GitHub release. To cut a release: ```bash LAST_VERSION=$(git tag --sort=version:refname | tail -n1) CHANGES=$(git log --pretty=format:'- %s [%h]' HEAD...$LAST_VERSION) - echo -e "## NEXT\n\n$CHANGES\n\n### Features\n\n## Fixes\n\n## Maintenance\n\n$(cat CHANGELOG.md)" > CHANGELOG.md + echo -e "## NEXT\n\n$CHANGES\n\n### Features\n\n### Fixes\n\n### Maintenance\n\n$(cat CHANGELOG.md)" > CHANGELOG.md ``` to update the changelog - Categorize the changes into diff --git a/types/version.go b/types/version.go index a4ea12a9e..7ba384a09 100644 --- a/types/version.go +++ b/types/version.go @@ -1,3 +1,3 @@ package types -const VERSION = "2.3.1" +const VERSION = "2.4.0"