1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-27 14:48:19 +00:00

Update verbump script to include version number in commit message

Easier to find.
This commit is contained in:
Jermolene 2013-12-03 10:09:37 +00:00
parent f3954d374d
commit 7d0b930335
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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