diff options
| author | dcc <dcc@logografos.com> | 2023-11-01 03:20:36 -0700 |
|---|---|---|
| committer | dcc <dcc@logografos.com> | 2023-11-01 03:20:36 -0700 |
| commit | 66bc3548f305eca99cedc44827781b25107450f7 (patch) | |
| tree | 8129b7bf2bc5145ab5d6ff6e57ba8cef7df77a75 /tools | |
| parent | 2f30aa79ba0afe6165d9ee71693bbaf94c9482cd (diff) | |
| download | anni-66bc3548f305eca99cedc44827781b25107450f7.tar.gz anni-66bc3548f305eca99cedc44827781b25107450f7.tar.bz2 anni-66bc3548f305eca99cedc44827781b25107450f7.zip | |
Its called 2.6.0
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/collect-changelog | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tools/collect-changelog b/tools/collect-changelog new file mode 100755 index 0000000..1e12d56 --- /dev/null +++ b/tools/collect-changelog @@ -0,0 +1,27 @@ +#!/bin/sh + +collectType() { + local suffix="$1" + local header="$2" + local printed=0 + for file in changelog.d/*."$suffix"; do + if [ '!' -f "$file" ]; then + continue + fi + if [ "$printed" = 0 ]; then + echo + echo "### $header" + printed=1 + fi + # Normalize any trailing newlines/spaces, etc. + echo "- $(cat "$file")" + done +} + +collectType security Security +collectType change Changed +collectType add Added +collectType fix Fixed +collectType remove Removed + +rm changelog.d/* |
