pingtimeout commented on code in PR #2179: URL: https://github.com/apache/polaris/pull/2179#discussion_r2231196636
########## site/content/release-guide.md: ########## @@ -113,16 +113,26 @@ git push apache release/x.y.z Go in the branch, and set the target release version: ``` -git checkoout release/x.y.z +git checkout release/x.y.z echo "x.y.z" > version.txt -git commit -a -git push +``` + +and update the version in the Helm Chart in: + +* `helm/polaris/Chart.yaml` +* `helm/polaris/README.md` +* `helm/polaris/values.yaml` + +and commit/push the version bump: + +``` +git commit -m "Bump version to x.y.z" version.txt helm/polaris/Chart.yaml helm/polaris/README.md helm/polaris/values.yaml ``` Update `CHANGELOG.md`: ``` ./gradlew patchChangelog -git commit -a +git commit CHANGELOG.md Review Comment: Should this command include a `-m "Update CHANGELOG for x.y.z release"` parameter just like the other `git commit` command above? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org