From 2b54b04c852f8153bdf818f864e002aa861051ed Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 19 May 2020 12:12:18 -0400 Subject: [PATCH] Add contrib/_incr_version --- contrib/_incr_version | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 contrib/_incr_version diff --git a/contrib/_incr_version b/contrib/_incr_version new file mode 100755 index 0000000..dfd22db --- /dev/null +++ b/contrib/_incr_version @@ -0,0 +1,4 @@ +#!/bin/sh -eu +sed -i Makefile -e "s/^VERSION=${1}/VERSION=${2}/" +git add Makefile +git commit -m "Update version to ${2}"