Changelog 2.6.0
This commit is contained in:
parent
b6accf9e7f
commit
c8b5b7845d
23 changed files with 52 additions and 20 deletions
27
tools/collect-changelog
Executable file
27
tools/collect-changelog
Executable file
|
|
@ -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/*
|
||||
Loading…
Add table
Add a link
Reference in a new issue