blob: f51b01ae2e0d3870428f9a7ea97f8c6285ae39f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
set -eu
read src ver <<-EOF
$(sed '1s/^\(.*\) (\(.*\)) .*$/\1 \2/; q;' changelog)
EOF
sed '/^ -- .* /{ s/^\( -- .* \).*$/\1'"$(LC_ALL='POSIX' date \
'+%a, %d %b %Y %H:%M:%S %z')"'/; :l; n; b l; };' changelog >changelog~
mv changelog~ changelog
git commit -m "changelog: Release ${src} ${ver}" -- changelog
ver="$(printf '%s' "${ver}" | tr ':' '_')"
git tag "${src}/${ver}" HEAD
|