This is an automated email from the ASF dual-hosted git repository. jxue pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/helix.git
commit 6ba9a4c57269afae26d5b2bf61c416fe8abe9647 Author: Zachary Pinto <[email protected]> AuthorDate: Tue Sep 3 22:02:47 2024 -0700 Add helix-gateway to bump-up.sh and bump-snapshot.sh (#2899) Add helix-gateway to bump-up.sh and bump-snapshot.sh --- bump-snapshot.sh | 1 + bump-up.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bump-snapshot.sh b/bump-snapshot.sh index 9a664ae8b..3cf1d9ad1 100755 --- a/bump-snapshot.sh +++ b/bump-snapshot.sh @@ -45,6 +45,7 @@ mv metrics-common/metrics-common-$version-SNAPSHOT.ivy metrics-common/metrics-co mv zookeeper-api/zookeeper-api-$version-SNAPSHOT.ivy zookeeper-api/zookeeper-api-$new_version-SNAPSHOT.ivy mv helix-view-aggregator/helix-view-aggregator-$version-SNAPSHOT.ivy helix-view-aggregator/helix-view-aggregator-$new_version-SNAPSHOT.ivy mv meta-client/meta-client-$version-SNAPSHOT.ivy meta-client/meta-client-$new_version-SNAPSHOT.ivy +mv helix-gateway/helix-gateway-$version-SNAPSHOT.ivy helix-gateway/helix-gateway-$new_version-SNAPSHOT.ivy find . -type f -name '*.ivy' -exec sed -i "s/$version/$new_version/g" {} \; diff --git a/bump-up.sh b/bump-up.sh index e3d7db673..8abffea91 100755 --- a/bump-up.sh +++ b/bump-up.sh @@ -74,7 +74,7 @@ echo "bump up: $current_version -> $new_version" update_pom_version "pom.xml" $current_version for module in "metrics-common" "metadata-store-directory-common" "zookeeper-api" "helix-common" "helix-core" \ - "helix-rest" "helix-lock" "helix-view-aggregator" "helix-agent" "meta-client"; do + "helix-rest" "helix-lock" "helix-view-aggregator" "helix-agent" "meta-client" "helix-gateway"; do update_ivy $module update_pom_version $module/pom.xml $current_version done
