You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2022/11/23 21:21:03 UTC

[arrow] branch master updated: MINOR: [Release] Add RC number and version to verify release candidate success message (#14664)

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new ada7e23959 MINOR: [Release] Add RC number and version to verify release candidate success message (#14664)
ada7e23959 is described below

commit ada7e23959dabcd4f586ad8c269dc2a6267ccacd
Author: Raúl Cumplido <ra...@gmail.com>
AuthorDate: Wed Nov 23 22:20:57 2022 +0100

    MINOR: [Release] Add RC number and version to verify release candidate success message (#14664)
    
    I've tested locally when verifying 10.0.1 rc 0:
    ```
    Release candidate number: 0 for version: 10.0.1 looks good!
    ```
    
    Lead-authored-by: Raúl Cumplido <ra...@gmail.com>
    Co-authored-by: Sutou Kouhei <ko...@cozmixng.org>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 dev/release/verify-release-candidate.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh
index 37d467dd3c..06a35312a7 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -1198,5 +1198,5 @@ test_binary_distribution
 
 TEST_SUCCESS=yes
 
-echo 'Release candidate looks good!'
+echo "Release candidate ${VERSION}-RC${RC_NUMBER} looks good!"
 exit 0