1
0
Fork 0

Adding upstream version 0.8.9.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-22 10:16:14 +02:00
parent 3b2c48b5e4
commit c0c4addb85
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
285 changed files with 25880 additions and 0 deletions

31
generate-release-notes.sh Normal file
View file

@ -0,0 +1,31 @@
#!/bin/bash
current=$1
if [ -z "$current" ]; then
echo "Missing argument VERSION"
exit 1
fi
tags=($(git tag --list))
for i in "${!tags[@]}"; do
if [[ "${tags[$i]}" = "$current" ]]; then
previous="${tags[$i - 1]}"
break
fi
done
if [ -z "$previous" ]; then
echo "Invalid tag, or could not find previous tag"
exit 1
fi
echo -e "\e[97mListing changes from \e[96m$previous\e[97m to \e[96m$current\e[0m:\n"
changes=$(git log --pretty=format:"* %h %s" $previous...$current)
echo "## Changelog"
echo "$changes" | grep -v "chore(deps)" | grep -v "Merge " | grep -v "chore(ci)"
echo
echo "### Dependencies"
echo "$changes" | grep "chore(deps)"