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 fc25b14  chore: Show all NuGet packages in release summary message 
(#55)
fc25b14 is described below

commit fc25b149888676fca8b040251cebaaa912605b5b
Author: Sutou Kouhei <[email protected]>
AuthorDate: Mon Sep 15 11:58:08 2025 +0900

    chore: Show all NuGet packages in release summary message (#55)
    
    ## What's Changed
    
    We have more NuGet packages.
    
    Closes #46.
---
 dev/release/release.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev/release/release.sh b/dev/release/release.sh
index 0d7432a..92e6ec1 100755
--- a/dev/release/release.sh
+++ b/dev/release/release.sh
@@ -185,7 +185,9 @@ echo 
"---------------------------------------------------------"
 echo
 echo "Success! The release is available here:"
 echo "  https://dist.apache.org/repos/dist/release/arrow/${release_id}";
-echo "  https://www.nuget.org/packages/Apache.Arrow";
+for nuget_package in "${nuget_packages[@]}"; do
+  echo "  https://www.nuget.org/packages/${nuget_package}";
+done
 echo
 echo "Add this release to ASF's report database:"
 echo "  https://reporter.apache.org/addrelease.html?arrow";

Reply via email to