From 212aa6e36f42e8e50b362f8c2a9b84fb411e16f0 Mon Sep 17 00:00:00 2001 From: Gergely Brautigam <182850+Skarlso@users.noreply.github.com> Date: Mon, 27 May 2024 09:17:46 +0200 Subject: [PATCH] docs: add release notes for v0.21.2 (#431) 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.2.md | 5 +++++ pkg/version/release.go | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 docs/release_notes/v0.21.2.md diff --git a/config/default/kustomization.yaml b/config/default/kustomization.yaml index f4f77c1f..f90b4247 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.1 + newTag: v0.21.2 - name: registry newName: registry diff --git a/docs/release_notes/v0.21.2.md b/docs/release_notes/v0.21.2.md new file mode 100644 index 00000000..beebb6b9 --- /dev/null +++ b/docs/release_notes/v0.21.2.md @@ -0,0 +1,5 @@ +# Release 0.21.2 + +- fix: add nil pointer checks for the descriptors (#430) +- Fix issue 186 - default is ignored (#420) +- remove http scheme from comp name (#419) diff --git a/pkg/version/release.go b/pkg/version/release.go index d40dd1e7..52f4fd82 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.1" +var ReleaseVersion = "v0.21.2" // ReleaseCandidate is the release candidate ID in format "rc.X", which will be appended to the release version. var ReleaseCandidate = "rc.1"