From f403893df9ed25ff41f358af6c0128986c5d77a9 Mon Sep 17 00:00:00 2001 From: Rory Z <16801068+Rory-Z@users.noreply.github.com> Date: Fri, 1 Sep 2023 18:05:30 +0800 Subject: [PATCH] chore: dump 2.2.2-rc.2 version Signed-off-by: Rory Z <16801068+Rory-Z@users.noreply.github.com> --- RELEASE.md | 4 ++-- deploy/charts/emqx-operator/Chart.yaml | 4 ++-- scripts/pre-release.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 194c4815a..b00cb6add 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,6 +1,6 @@ # Release Note 🍻 -EMQX Operator 2.2.2-rc.1 is released. +EMQX Operator 2.2.2-rc.2 has been released. ## Supported version + apps.emqx.io/v2beta1 @@ -29,7 +29,7 @@ helm repo update helm upgrade --install emqx-operator emqx/emqx-operator \ --namespace emqx-operator-system \ --create-namespace \ - --version 2.2.2-rc.1 + --version 2.2.2-rc.2 kubectl wait --for=condition=Ready pods -l "control-plane=controller-manager" -n emqx-operator-system ``` diff --git a/deploy/charts/emqx-operator/Chart.yaml b/deploy/charts/emqx-operator/Chart.yaml index e38a371f2..9be9425fe 100644 --- a/deploy/charts/emqx-operator/Chart.yaml +++ b/deploy/charts/emqx-operator/Chart.yaml @@ -15,9 +15,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 2.2.2 +version: 2.2.2-rc.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 2.2.2 +appVersion: 2.2.2-rc.2 diff --git a/scripts/pre-release.sh b/scripts/pre-release.sh index c815a7067..f68a0f631 100755 --- a/scripts/pre-release.sh +++ b/scripts/pre-release.sh @@ -14,7 +14,7 @@ case $(sed --help 2>&1) in *) SED_REPLACE="sed -i () ";; esac -${SED_REPLACE} -r "s|^EMQX Operator (.*) is released$|EMQX Operator ${tag} is released|g" RELEASE.md +${SED_REPLACE} -r "s|^EMQX Operator .* has been released\.$|EMQX Operator ${tag} has been released.|g" RELEASE.md ${SED_REPLACE} -r "s|--version (.*)$|--version ${tag}|g" RELEASE.md ${SED_REPLACE} -r "s|^version:.*|version: ${tag}|g" deploy/charts/emqx-operator/Chart.yaml ${SED_REPLACE} -r "s|^appVersion:.*|appVersion: ${tag}|g" deploy/charts/emqx-operator/Chart.yaml