summaryrefslogtreecommitdiffstats
path: root/scripts/gen-changelog
blob: 67d2419f13afa61fd28f30e53640757f95d568e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash

since="$1"

if [[ -z "$since" ]]; then
    echo "Usage: $0 [since]"
    exit 1
fi

for rev in $(git rev-list "$since"..HEAD | tac); do
    if git notes --ref=changelog list $rev &> /dev/null; then
        output=$(git notes --ref=changelog show $rev | sed '2,$s/^/  /')
        echo "* [$(echo ${rev:0:10})] $output"
    fi
done