We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b095f88 commit 2f6c639Copy full SHA for 2f6c639
misc/news.bash
@@ -1,6 +1,8 @@
1
#!/bin/bash
2
FROM=v6.0.0
3
4
+args=("$@")
5
+
6
pr_title()
7
{
8
local N=$1
@@ -41,6 +43,9 @@ case $1 in
41
43
pr_title "$1"
42
44
exit 0
45
else
46
+ echo
47
+ echo ".. generated by $0 ${args[@]}" "[$FROM]"
48
49
git log --oneline ${FROM}.. \
50
| grep '[0-9a-f]\+ Merge pull request #[0-9]\+.*' \
51
| sed -ne 's/.*#\([0-9]\+\) from.*/\1/p' | while read N; do
@@ -55,6 +60,9 @@ case $1 in
55
60
issue_title "$1"
56
61
57
62
63
64
65
58
66
git log ${FROM}.. \
59
67
| grep 'Close #' \
68
| sed -ne 's/[[:space:]]Close #\([0-9]\+\).*/\1/p' | while read N; do
0 commit comments