diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-08 04:04:47 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-08 04:04:47 (EST) |
commit | d9665063b9aa7c304b9383a86360c3cd92d01952 (patch) | |
tree | 526b9f7e26e0bd45a90b48e12aaa09db2c1a5498 | |
parent | 79d11f8f41c43f5e190fb5143340e53c2f5da215 (diff) |
-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 |