1
0
mirror of https://github.com/timescale/timescaledb.git synced 2025-05-21 13:14:19 +08:00

Add missing new lines to changelog script

Our changelog contains empty lines between the version sections. These
empty lines were missing in the script output so far.
This commit is contained in:
Jan Nidzwetzki 2023-11-28 10:18:20 +01:00 committed by Jan Nidzwetzki
parent 4e8581fc28
commit 9fd6d8b817

@ -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