From 5c01850c588af4e2872d1704d7a0c79e5bf70f16 Mon Sep 17 00:00:00 2001 From: Gergely Brautigam <182850+Skarlso@users.noreply.github.com> Date: Mon, 27 May 2024 10:34:53 +0200 Subject: [PATCH] docs: add release notes for v0.21.3 (#433) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. List any dependencies that are required for this change. ## What type of PR is this? (check all applicable) - [ ] 🍕 Feature - [ ] 🐛 Bug Fix - [ ] 📝 Documentation Update - [ ] 🎨 Style - [ ] 🧑‍💻 Code Refactor - [ ] 🔥 Performance Improvements - [ ] ✅ Test - [ ] 🤖 Build - [ ] 🔁 CI - [ ] 📦 Chore (Release) - [ ] ⏩ Revert ## Related Tickets & Documents - Related Issue # (issue) - Closes # (issue) - Fixes # (issue) > Remove if not applicable ## Screenshots ## Added tests? - [ ] 👍 yes - [ ] 🙅 no, because they aren't needed - [ ] 🙋 no, because I need help - [ ] Separate ticket for tests # (issue/pr) Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration ## Added to documentation? - [ ] 📜 README.md - [ ] 🙅 no documentation needed ## Checklist: - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --- config/default/kustomization.yaml | 2 +- docs/release_notes/v0.21.3.md | 3 +++ pkg/version/release.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 docs/release_notes/v0.21.3.md diff --git a/config/default/kustomization.yaml b/config/default/kustomization.yaml index f90b4247..a27f56a4 100644 --- a/config/default/kustomization.yaml +++ b/config/default/kustomization.yaml @@ -13,6 +13,6 @@ transformers: images: - name: open-component-model/ocm-controller newName: ghcr.io/open-component-model/ocm-controller - newTag: v0.21.2 + newTag: v0.21.3 - name: registry newName: registry diff --git a/docs/release_notes/v0.21.3.md b/docs/release_notes/v0.21.3.md new file mode 100644 index 00000000..e25c63f2 --- /dev/null +++ b/docs/release_notes/v0.21.3.md @@ -0,0 +1,3 @@ +# Release 0.21.3 + +- fix: message formatting not passed in (#432) diff --git a/pkg/version/release.go b/pkg/version/release.go index 52f4fd82..7c337e46 100644 --- a/pkg/version/release.go +++ b/pkg/version/release.go @@ -5,7 +5,7 @@ package version // ReleaseVersion is the version number in semver format "vX.Y.Z", prefixed with "v". -var ReleaseVersion = "v0.21.2" +var ReleaseVersion = "v0.21.3" // ReleaseCandidate is the release candidate ID in format "rc.X", which will be appended to the release version. var ReleaseCandidate = "rc.1"