aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2023-10-29 18:29:28 +0200
committerHenry Jameson <me@hjkos.com>2023-10-29 18:29:37 +0200
commitc8b5b7845da6874b4d4ecbea5ac7003171c5ad29 (patch)
tree8cd80aaefccd114d9fbe2ce0612167de56d47216 /tools
parentb6accf9e7f7ef5f23cbf8bac57e54cefa0db4620 (diff)
Changelog 2.6.0
Diffstat (limited to 'tools')
-rwxr-xr-xtools/collect-changelog27
1 files changed, 27 insertions, 0 deletions
diff --git a/tools/collect-changelog b/tools/collect-changelog
new file mode 100755
index 00000000..1e12d564
--- /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/*