diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-21 13:53:25 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-21 13:53:25 (EST) |
commit | 441b78789b8c72e364c8d70d0738e4e48b09bc66 (patch) | |
tree | 97378b27031074c17c9cce10297febd35df95d7e | |
parent | 451d4fac8aac2f4f9ac9317a65695c8f4aee5180 (diff) |
release: New script (copied from gcc-8)
-rwxr-xr-x | release | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,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 |