From 7d0b9303354cddeb117de4c1f74bcc614e31be66 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Tue, 3 Dec 2013 10:09:37 +0000 Subject: [PATCH] Update `verbump` script to include version number in commit message Easier to find. --- verbump.cmd | 4 ++-- verbump.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/verbump.cmd b/verbump.cmd index 657decac8..378a3e3e8 100644 --- a/verbump.cmd +++ b/verbump.cmd @@ -3,13 +3,13 @@ rem Bump to a new version number if "x%1" == "x" ( - echo Missing version (eg '5.0.0-alpha.99'^) + echo Missing version (eg '5.0.0-alpha'^) exit 1 ) rem Set the new version number (will also commit and tag the release) -npm version %1 -m "Version update" || exit 1 +npm version %1 -m "Version number update for %1" || exit 1 rem Make sure our tags are pushed to the origin server diff --git a/verbump.sh b/verbump.sh index 01863659c..fe97908ef 100755 --- a/verbump.sh +++ b/verbump.sh @@ -4,13 +4,13 @@ if [ -z "$1" ] then - echo "Missing version (eg '5.0.0-alpha.99')" + echo "Missing version (eg '5.0.0-alpha')" exit 1 fi # Set the new version number (will also commit and tag the release) -npm version $1 -m "Version update" || exit 1 +npm version $1 -m "Version number update for $1" || exit 1 # Make sure our tags are pushed to the origin server