Skip to content

Commit

Permalink
Add missing new lines to changelog script
Browse files Browse the repository at this point in the history
Our changelog contains empty lines between the version sections. These
empty lines were missing in the script output so far.
  • Loading branch information
jnidzwetzki committed Nov 28, 2023
1 parent 4e8581f commit 9fd6d8b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/merge_changelogs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
# skip the template file
echo "**Features**"
grep -i '^Implements:' .unreleased/* | grep -v '.unreleased/template.rfc822' | cut -d: -f3- | sort | uniq | sed -e 's/^[[:space:]]*//' -e 's/^/* /'
echo

echo "**Bugfixes**"
grep -i '^Fixes:' .unreleased/* | grep -v '.unreleased/template.rfc822' | cut -d: -f3- | sort | uniq | sed -e 's/^[[:space:]]*//' -e 's/^/* /'
echo

echo "**Thanks**"
grep -i '^Thanks:' .unreleased/* | grep -v '.unreleased/template.rfc822' | cut -d: -f3- | sort | sed -e 's/^[[:space:]]*//' -e 's/^/* /'
echo

0 comments on commit 9fd6d8b

Please sign in to comment.