This is an automated email from the ASF dual-hosted git repository.
zhoujinsong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git
The following commit(s) were added to refs/heads/master by this push:
new 7e9f9a769 [Hotfix][tools] Include Helm chart in change-version script
(#4306)
7e9f9a769 is described below
commit 7e9f9a7697a2a7cfef6ff6362235153a3bf39035
Author: Xu Bai <[email protected]>
AuthorDate: Mon Aug 3 20:02:34 2026 +0800
[Hotfix][tools] Include Helm chart in change-version script (#4306)
---
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 f936eeb63..32b1b5454 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 bd4ebca8d..a59c78f19 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