diff options
-rwxr-xr-x | release | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -2,8 +2,12 @@ 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 $(sed '1s/^\(.*\) (\(.*\)) .*$/\1 \2/; q;' \ - changelog)" -- changelog +git commit -m "changelog: Release ${src} ${ver}" -- changelog +git tag "${src}/${ver}" HEAD |