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

ctubbsii pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/2.1 by this push:
     new 94106181c4 Trivial updates to release candidate script
94106181c4 is described below

commit 94106181c41a6879cded4cb94f58e0dec2c2c159
Author: Christopher Tubbs <[email protected]>
AuthorDate: Tue Mar 24 18:09:37 2026 -0400

    Trivial updates to release candidate script
    
    * Update script to reduce differences with other Accumulo repos
---
 src/build/create-release-candidate.sh | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/src/build/create-release-candidate.sh 
b/src/build/create-release-candidate.sh
index d9ad0548ca..2fa4c14ace 100755
--- a/src/build/create-release-candidate.sh
+++ b/src/build/create-release-candidate.sh
@@ -23,8 +23,8 @@ scriptname=$(basename "$0")
 projectroot="$(git rev-parse --show-toplevel)" || exit 1
 cd "$projectroot" || exit 1
 export tlpName=accumulo
-export projName="$tlpName"
-export projNameLong="Apache ${projName^}"
+export projName="$(xmllint --shell assemble/pom.xml <<<'xpath 
/*[local-name()="project"]/*[local-name()="artifactId"]/text()' | grep content= 
| cut -f2 -d=)"
+export projNameLong="$(xmllint --shell assemble/pom.xml <<<'xpath 
/*[local-name()="project"]/*[local-name()="name"]/text()' | grep content= | cut 
-f2 -d=)"
 export 
stagingRepoPrefix="https://repository.apache.org/content/repositories/orgapache$tlpName";
 export srcQualifier="src"
 export 
relTestingUrl="https://$tlpName.apache.org/contributor/verifying-release";
@@ -163,8 +163,9 @@ createEmail() {
   echo
   echo "    Remember, $(red DO NOT PUSH) the $(red "$tag") tag until after the 
vote"
   echo "    passes and the tag is re-made with a gpg signature using:"
-  echo "      $(red "git tag -f -s -m '$projNameLong $ver' $tag") \\"
-  echo "      $(red "$commit")"
+  echo "      $(red "git tag -f -s -m '$projNameLong $ver'") \\"
+  echo "        $(red "$tag") \\"
+  echo "        $(red "$commit")"
   echo
   yellow "IMPORTANT!! IMPORTANT!! IMPORTANT!! IMPORTANT!! IMPORTANT!! 
IMPORTANT!!"
   echo
@@ -204,8 +205,9 @@ Branch:
     $(green "$branch")
 
 If this vote passes, a gpg-signed tag will be created using:
-    $(green "git tag -f -s -m '$projNameLong $ver' $tag") \\
-    $(green "$commit")
+    $(green "git tag -f -s -m '$projNameLong $ver'") \\
+      $(green "$tag") \\
+      $(green "$commit")
 
 Staging repo: $(green "$stagingRepoPrefix-$stagingrepo")
 Source (official release artifact): $(green 
"$stagingRepoPrefix-$stagingrepo/org/apache/$tlpName/$projName/$ver/$projName-$ver-$srcQualifier.tar.gz")
@@ -227,6 +229,8 @@ SHA512 ($(green "$projName-$ver-bin.tar.gz")) = $(yellow 
"$binSha")
 
 Release notes (in progress) can be found at: $(green 
"https://$tlpName.apache.org/release/$projName-$ver";)
 
+Issues and pull requests related to this release can be found at: $(green 
"https://github.com/apache/$projName/issues?q=milestone%3A$ver";)
+
 Release testing instructions: $relTestingUrl
 
 Please vote one of:

Reply via email to