blob: 871cb4a29aaecc600e1070cb5204ccead712b162 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/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
git tag "${src}/${ver}" HEAD
|