aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/jenkins/bump-increment.sh
diff options
context:
space:
mode:
authorTobias Bosch2013-12-13 20:02:15 -0800
committerTobias Bosch2013-12-13 21:49:05 -0800
commit9a4c9e6487e0f51275a7820d0c162aceeadbf561 (patch)
treeefce73ed82268c92c4b3bfa03c9ed1c44d053b6b /scripts/jenkins/bump-increment.sh
parent11fff8fa0d370e2f20284510ad0e52cdf3bcb2a3 (diff)
downloadangular.js-9a4c9e6487e0f51275a7820d0c162aceeadbf561.tar.bz2
chore(build): correct and refactor release script
Diffstat (limited to 'scripts/jenkins/bump-increment.sh')
-rwxr-xr-xscripts/jenkins/bump-increment.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/scripts/jenkins/bump-increment.sh b/scripts/jenkins/bump-increment.sh
new file mode 100755
index 00000000..1a000fe0
--- /dev/null
+++ b/scripts/jenkins/bump-increment.sh
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+echo "############################################"
+echo "## Increment version and add "-snapshot" ##"
+echo "############################################"
+
+if [ "$1" != "patch" -a "$1" != "minor" -a "$1" != "major" ]; then
+ echo "Please specify the next version type: patch|minor|major"
+ exit 1
+fi
+BUMP_TYPE=$1
+
+# Enable tracing and exit on first failure
+set -xe
+# Normalize working dir to script dir
+cd `dirname $0`/../..
+
+echo "-- increment version "
+grunt bump:$BUMP_TYPE
+NEXT_VERSION=$(node -e "console.log(require('./package.json').version)" | sed -e 's/\r//g')
+sed -i .tmp -e 's/"version": "\(.*\)"/"version": "\1-snapshot"/' package.json
+echo "-- new version: `grep '"version"' package.json`"
+echo "-- commit"
+git add package.json
+git commit -m "chore(release): start v$NEXT_VERSION" \ No newline at end of file