From 06de4ac14888b7557a7835c14b0fe96d56770f52 Mon Sep 17 00:00:00 2001 From: Eugene Syromyatnikov Date: Fri, 22 Jun 2018 13:26:06 +0200 Subject: [PATCH] maint: improve the tag message * maint/gen-tag-message.sh: Align the wording of the changes section header with the one used in NEWS, add a reference to CREDITS in "Contributors" section. Co-Authored-by: Dmitry V. Levin --- maint/gen-tag-message.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/maint/gen-tag-message.sh b/maint/gen-tag-message.sh index ed2e08a6..aecc90f6 100755 --- a/maint/gen-tag-message.sh +++ b/maint/gen-tag-message.sh @@ -49,7 +49,8 @@ git show "$id:NEWS" > "$tmpf" marker='^Noteworthy changes in release \([^ ]\+\) ([^)]\+)$' vers="$(sed -n "s/$marker/\\1/p;q" "$tmpf")" -msg="NEWS for strace version $vers" +msg_date=`LC_TIME=C date -u '+%Y-%m-%d'` +msg="Noteworthy changes in strace $vers ($msg_date)" sep="$(echo "$msg" |sed s/./=/g)" echo "$msg" echo "$sep" @@ -68,3 +69,8 @@ __EOF__ "$(dirname "$0")"/gen-contributors-list.sh | sed 's/^./* &/' + +cat <<'__EOF__' + +Please refer to the CREDITS file for the full list of strace contributors. +__EOF__ -- 2.40.0