From c7ccd8281a97b019bc57ac3a25d8b10e595d5169 Mon Sep 17 00:00:00 2001 From: Brooke Hamilton <45323234+brooke-hamilton@users.noreply.github.com> Date: Fri, 6 Dec 2024 08:39:48 -0500 Subject: [PATCH] Release: 0.41.0-rc1 (#8107) # Description Releasing v0.41.0-rc1 This pull request includes changes to the release process documentation and the `versions.yaml` file to reflect the new release candidate version. Updates to version tracking: * [`versions.yaml`](diffhunk://#diff-1c4cd801df522f4a92edbfb0fea95364ed074a391ea47c284ddc078f512f7b6aR2-R3): Added a new release candidate version `v0.41.0-rc1` under the supported channels. ## Type of change - Release --------- Signed-off-by: Brooke Hamilton <45323234+brooke-hamilton@users.noreply.github.com> Co-authored-by: Shruthi Kumar --- .../contributing/contributing-releases/README.md | 16 ++++++++++++++-- versions.yaml | 2 ++ 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/docs/contributing/contributing-releases/README.md b/docs/contributing/contributing-releases/README.md index 2c5c30f77f..041ceeadee 100644 --- a/docs/contributing/contributing-releases/README.md +++ b/docs/contributing/contributing-releases/README.md @@ -46,10 +46,22 @@ Follow the steps below to create an RC release. ```bash git checkout main - git checkout -b / + git checkout -b /release-..0-rc1 ``` -1. In your local branch, update the `versions.yaml` file to to reflect the new release candidate version that we would like to release. The `versions.yaml` file is a declarative version tracking file that the Radius community maintains ([Example](https://github.com/radius-project/radius/pull/6077/files)). +1. In your local branch, update the `versions.yaml` file to add the new release candidate as a supported version that we would like to release. The `versions.yaml` file is a declarative version tracking file that the Radius community maintains ([Example](https://github.com/radius-project/radius/pull/6077/files)). + + Example: + ```yaml + supported: + - channel: '0.41' + version: 'v0.41.0-rc1' + - channel: '0.40' + version: 'v0.40.0' + deprecated: + - channel: '0.39' + version: 'v0.39.0' + ``` 1. Push these changes to a remote branch and create a pull request against `main`. diff --git a/versions.yaml b/versions.yaml index 62eaf24164..cb5db0d74f 100644 --- a/versions.yaml +++ b/versions.yaml @@ -1,4 +1,6 @@ supported: + - channel: '0.41' + version: 'v0.41.0-rc1' - channel: '0.40' version: 'v0.40.0' deprecated: