Merge branch 'release-0.0.6'

This commit is contained in:
Ismo Vuorinen
2016-08-04 17:04:03 +03:00
3 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
## 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.6

View File

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