summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2020-12-21 07:27:50 (EST)
committer P. J. McDermott <pj@pehjota.net>2020-12-21 07:27:50 (EST)
commitc6e2efe57263fef42949fec42877ffca83c9f7c3 (patch)
treea2c7fa93139f065eb4f265c98178540bcda724da /release
Initial commit
Diffstat (limited to 'release')
-rwxr-xr-xrelease14
1 files changed, 14 insertions, 0 deletions
diff --git a/release b/release
new file mode 100755
index 0000000..0b33aca
--- /dev/null
+++ b/release
@@ -0,0 +1,14 @@
+#!/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
+ver="$(printf '%s' "${ver}" | tr '~' '.')"
+git tag "${src}/${ver}" HEAD