We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6e7eff commit d875b80Copy full SHA for d875b80
dev/release/bump_version.sh
@@ -44,7 +44,8 @@ case "${git_origin_url}" in
44
;;
45
esac
46
47
-git switch -c "bump-version-${version}" main
+branch="bump-version-${version}"
48
+git switch -c "${branch}" main
49
mvn versions:set "-DnewVersion=${version}" -DprocessAllModules -DgenerateBackupPoms=false
50
case "${version}" in
51
*-SNAPSHOT)
@@ -59,5 +60,5 @@ mvn versions:set-scm-tag "-DnewTag=${tag}" -DgenerateBackupPoms=false -pl :arrow
59
60
git add "pom.xml"
61
git add "**/pom.xml"
62
git commit -m "MINOR: Bump version to ${version}"
-git push origin
63
+git push origin "${branch}"
64
gh pr create --fill --repo apache/arrow-java
0 commit comments