12 Commits
0.0.5 ... 0.0.8

Author SHA1 Message Date
Ismo Vuorinen
ad212fa78d Merge branch 'release-0.0.8' 2016-08-04 17:10:24 +03:00
Ismo Vuorinen
c80d8afa94 Incrementing version number to 0.0.8 2016-08-04 17:10:24 +03:00
Ismo Vuorinen
964866a2e3 Push master and dev branches explicitly 2016-08-04 17:09:38 +03:00
Ismo Vuorinen
6b020a6fbf Merge branch 'release-0.0.7' 2016-08-04 17:07:24 +03:00
Ismo Vuorinen
07ee9ad6a2 Merge branch 'release-0.0.7' into develop 2016-08-04 17:07:24 +03:00
Ismo Vuorinen
64c82d61cd Incrementing version number to 0.0.7 2016-08-04 17:07:24 +03:00
Ismo Vuorinen
9408ec3c5d Change pushing to do all 2016-08-04 17:06:47 +03:00
Ismo Vuorinen
a9fa72574a Merge branch 'release-0.0.6' 2016-08-04 17:04:03 +03:00
Ismo Vuorinen
92412a5006 Merge branch 'release-0.0.6' into develop 2016-08-04 17:04:03 +03:00
Ismo Vuorinen
0fa05f5f9e Incrementing version number to 0.0.6 2016-08-04 17:04:03 +03:00
Ismo Vuorinen
5af80c229c Ask should we push to origin, with tags 2016-08-04 17:03:36 +03:00
Ismo Vuorinen
497fbd22a7 Merge branch 'release-0.0.5' into develop 2016-08-04 16:58:10 +03:00
3 changed files with 19 additions and 1 deletions

View File

@@ -1,3 +1,12 @@
## 0.0.8 (2016-08-04)
- 964866a2e355442d238994e0a31ac8a45d429c2c 2016-08-04 | Push master and dev branches explicitly (HEAD -> release-0.0.8, develop) [Ismo Vuorinen]
## 0.0.7 (2016-08-04)
- 9408ec3c5d22b54d038c0909926ee661fbd7c25c 2016-08-04 | Change pushing to do all (HEAD -> release-0.0.7, develop) [Ismo Vuorinen]
## 0.0.6 (2016-08-04)
- 5af80c229c83d1716876f767fed56fa0352dbaab 2016-08-04 | Ask should we push to origin, with tags (HEAD -> release-0.0.6, develop) [Ismo Vuorinen]
## 0.0.5 (2016-08-04)
- 9ac3cdf1f2ad87a24756614369b6911e4232ac0d 2016-08-04 | Final message to show we are done (HEAD -> release-0.0.5, origin/develop, develop) [Ismo Vuorinen]

View File

@@ -1 +1 @@
0.0.5
0.0.8

View File

@@ -141,4 +141,13 @@ git merge --no-ff $BRANCH_RELEASE
# Remove release branch
git branch -d $BRANCH_RELEASE
echo -ne "${QUESTION_FLAG} ${CYAN}Push?"
read PUSH
if [[ $PUSH =~ [yY](es)* ]] || [ "$PUSH" = "" ]; then
git push --tags
git push $BRANCH_MASTER
git push $BRANCH_DEV
fi
echo -e "${NOTICE_FLAG} Done!"