This is an automated email from the ASF dual-hosted git repository. kou pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/arrow-dotnet.git
The following commit(s) were added to refs/heads/main by this push: new db732fb chore: Fix descriptions/examples in `dev/release/README.md` (#53) db732fb is described below commit db732fb1a069fce65c315ee7ff05213d3ca6c2c2 Author: Sutou Kouhei <k...@clear-code.com> AuthorDate: Sat Sep 13 09:39:57 2025 +0900 chore: Fix descriptions/examples in `dev/release/README.md` (#53) ## What's Changed We don't need the "version" argument for `dev/release/release_rc.sh` and `dev/release/release.sh`. Closes #40. --- dev/release/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dev/release/README.md b/dev/release/README.md index b39bf9c..2f9ea43 100644 --- a/dev/release/README.md +++ b/dev/release/README.md @@ -107,15 +107,15 @@ Run `dev/release/release_rc.sh` on a working copy of ```console $ git clone g...@github.com:apache/arrow-dotnet.git $ cd arrow-dotnet -$ dev/release/release_rc.sh ${VERSION} ${RC} +$ dev/release/release_rc.sh ${RC} (Send a vote email to d...@arrow.apache.org. You can use a draft shown by release_rc.sh for the email.) ``` -Here is an example to release 22.0.0 RC0: +Here is an example to release RC0: ```console -$ dev/release/release_rc.sh 22.0.0 0 +$ dev/release/release_rc.sh 0 ``` The arguments of `release_rc.sh` are the version and the RC number. If @@ -133,13 +133,13 @@ Run `dev/release/release.sh` on a working copy of source archive to apache.org: ```console -$ dev/release/release.sh ${VERSION} ${RC} +$ dev/release/release.sh ${RC} ``` -Here is an example to release 22.0.0 RC0: +Here is an example to release RC0: ```console -$ dev/release/release.sh 22.0.0 0 +$ dev/release/release.sh 0 ``` It generates a draft announce email. Send it to `annou...@apache.org` @@ -177,10 +177,10 @@ To verify a RC, run the following command line: $ dev/release/verify_rc.sh ${VERSION} ${RC} ``` -Here is an example to verify the release 21.0.0 RC0: +Here is an example to verify the release 22.0.0 RC0: ```console -$ dev/release/verify_rc.sh 21.0.0 0 +$ dev/release/verify_rc.sh 22.0.0 0 ``` If the verification is successful, the message `RC looks good!` is shown.