Skip to content

Commit

Permalink
Improved wording
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasdille committed Dec 18, 2023
1 parent 1cb2f02 commit fd50dee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/release-notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,23 +46,23 @@ cosign verify-blob uniget_linux_\$(uname -m).tar.gz \\
EOF

echo
echo "## Bugfixes"
echo "## Bugfixes (since ${PREVIOUS_TAG})"
echo
gh issue list \
--search="state:closed closed:>${TIMESTAMP} label:bug -label:wontfix" \
--json=number,title,url \
--template='{{range .}}- {{.title}} ({{hyperlink .url (printf "#%v" .number)}}){{"\n"}}{{end}}'

echo
echo "## Features"
echo "## Features (since ${PREVIOUS_TAG})"
echo
gh issue list \
--search="state:closed closed:>${TIMESTAMP} label:enhancement -label:wontfix" \
--json=number,title,url \
--template='{{range .}}- {{.title}} ({{hyperlink .url (printf "#%v" .number)}}){{"\n"}}{{end}}'

echo
echo "## Dependency updates"
echo "## Dependency updates (since ${PREVIOUS_TAG})"
echo
gh pr list \
--state=merged \
Expand All @@ -72,7 +72,7 @@ gh pr list \

echo
cat <<EOF
## Full Changelog
## Full Changelog (since ${PREVIOUS_TAG})
[Compare with previous release](https://github.com/uniget-org/cli/compare/${PREVIOUS_TAG}...${TAG})
EOF

0 comments on commit fd50dee

Please sign in to comment.