diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-18 10:11:04 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-18 10:13:02 (EDT) |
commit | 5da908ec23a598baee0842fe95e81b0264d18cd2 (patch) | |
tree | 61e766ff94038365a35fc97794218546f5d18ce2 | |
parent | 2c69f3bfd16876f1fdff75fc53434b21e027dd44 (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 |