This is an automated email from the ASF dual-hosted git repository. xxubai pushed a commit to branch 0.9.x in repository https://gitbox.apache.org/repos/asf/amoro.git
commit 478ed1bd70dd9d3bd4ddc48483c18b1fe0a624df Author: Xu Bai <[email protected]> AuthorDate: Mon Aug 3 20:02:34 2026 +0800 [Hotfix][tools] Include Helm chart in change-version script (#4306) (cherry picked from commit 7e9f9a7697a2a7cfef6ff6362235153a3bf39035) --- site/amoro-site/content/community/release-guide.md | 3 +++ tools/change-version.sh | 3 +++ 2 files changed, 6 insertions(+) diff --git a/site/amoro-site/content/community/release-guide.md b/site/amoro-site/content/community/release-guide.md index 81679cf7a..48cd13bfd 100644 --- a/site/amoro-site/content/community/release-guide.md +++ b/site/amoro-site/content/community/release-guide.md @@ -266,6 +266,9 @@ fi # change version in all pom files find .. -name 'pom.xml' -type f -exec perl -pi -e 's#<version>'"$OLD"'</version>#<version>'"$NEW"'</version>#' {} \; + +# change application version in the Helm chart +perl -pi -e 's#^appVersion: "'"$OLD"'"$#appVersion: "'"$NEW"'"#' ../charts/amoro/Chart.yaml ``` Then run the scripts and commit the change: diff --git a/tools/change-version.sh b/tools/change-version.sh index 197f53557..35e87f330 100644 --- a/tools/change-version.sh +++ b/tools/change-version.sh @@ -29,3 +29,6 @@ fi # change version in all pom files find .. -name 'pom.xml' -type f -exec perl -pi -e 's#<version>'"$OLD"'</version>#<version>'"$NEW"'</version>#' {} \; + +# change application version in the Helm chart +perl -pi -e 's#^appVersion: "'"$OLD"'"$#appVersion: "'"$NEW"'"#' ../charts/amoro/Chart.yaml
