From 24f92054d92fcb0bd6c46e68bebb1a3d20e75c22 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Wed, 27 Feb 2019 15:51:02 -0800 Subject: [PATCH] versioning: update version update script to include push, commit message --- update-version.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/update-version.sh b/update-version.sh index c6f7a1e4..ec8f1087 100755 --- a/update-version.sh +++ b/update-version.sh @@ -4,5 +4,6 @@ BASE=2.2 NOW=$(date +%Y%m%d) sed -i='' -E "s/(__version__ = ').*$/\1$BASE.$NOW'/" ./pywb/version.py git tag v-$BASE.$NOW -git commit ./pywb/version.py +git commit -m "version: update to $BASE.$NOW" ./pywb/version.py +git push git push origin v-$BASE.$NOW