mirror of
https://github.com/superhelio/tools.git
synced 2026-01-30 21:46:23 +00:00
Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
32f1d3b58f | ||
|
|
cb5c3234f9 | ||
|
|
72d3fe5a12 | ||
|
|
94cefa42a8 | ||
|
|
2a88069212 | ||
|
|
ad212fa78d | ||
|
|
dc6136d132 | ||
|
|
c80d8afa94 | ||
|
|
964866a2e3 | ||
|
|
6b020a6fbf | ||
|
|
07ee9ad6a2 | ||
|
|
64c82d61cd | ||
|
|
9408ec3c5d | ||
|
|
a9fa72574a | ||
|
|
92412a5006 | ||
|
|
0fa05f5f9e | ||
|
|
5af80c229c | ||
|
|
497fbd22a7 |
22
CHANGELOG.md
22
CHANGELOG.md
@@ -1,12 +1,26 @@
|
|||||||
|
## 0.0.9 (2016-08-04)
|
||||||
|
- 72d3fe5 2016-08-04 | Changed git log hash length (HEAD -> release-0.0.9, develop) [Ismo Vuorinen]
|
||||||
|
- 94cefa4 2016-08-04 | Remove merges from git log command output [Ismo Vuorinen]
|
||||||
|
- 2a88069 2016-08-04 | Fixed pushing [Ismo Vuorinen]
|
||||||
|
|
||||||
|
## 0.0.8 (2016-08-04)
|
||||||
|
- 964866a 2016-08-04 | Push master and dev branches explicitly (HEAD -> release-0.0.8, develop) [Ismo Vuorinen]
|
||||||
|
|
||||||
|
## 0.0.7 (2016-08-04)
|
||||||
|
- 9408ec3 2016-08-04 | Change pushing to do all (HEAD -> release-0.0.7, develop) [Ismo Vuorinen]
|
||||||
|
|
||||||
|
## 0.0.6 (2016-08-04)
|
||||||
|
- 5af80c2 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)
|
## 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]
|
- 9ac3cdf 2016-08-04 | Final message to show we are done (HEAD -> release-0.0.5, origin/develop, develop) [Ismo Vuorinen]
|
||||||
|
|
||||||
## 0.0.4 (2016-08-04)
|
## 0.0.4 (2016-08-04)
|
||||||
- 865447cf1637fa413056c4ed0c52a6816eb5d0a4 2016-08-04 | Minor changes to make sure nothing strange happens when releasing (HEAD -> release-0.0.4, develop) [Ismo Vuorinen]
|
- 865447c 2016-08-04 | Minor changes to make sure nothing strange happens when releasing (HEAD -> release-0.0.4, develop) [Ismo Vuorinen]
|
||||||
|
|
||||||
## 0.0.3 (2016-08-04)
|
## 0.0.3 (2016-08-04)
|
||||||
- c23b512b808fda4c2cc9edf9f618061a553c61a6 2016-08-04 | If our changelog is missing, create one? (HEAD -> release-0.0.3, develop) [Ismo Vuorinen]
|
- c23b512 2016-08-04 | If our changelog is missing, create one? (HEAD -> release-0.0.3, develop) [Ismo Vuorinen]
|
||||||
- e4f313a05698acdb55ec30538eab0477b26c0063 2016-08-04 | Add missing changelog file [Ismo Vuorinen]
|
- e4f313a 2016-08-04 | Add missing changelog file [Ismo Vuorinen]
|
||||||
|
|
||||||
## 0.0.2 (2016-08-04)
|
## 0.0.2 (2016-08-04)
|
||||||
- Changed date format on release header
|
- Changed date format on release header
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ echo $NEW_VERSION > $FILE_VERSION
|
|||||||
|
|
||||||
# Create our changelog
|
# Create our changelog
|
||||||
echo "## $NEW_VERSION ($NOW)" > tmpfile
|
echo "## $NEW_VERSION ($NOW)" > tmpfile
|
||||||
git log --pretty=format:" - %H %ad | %s%d [%an]" --date=short "$BASE_STRING"...HEAD >> tmpfile
|
git log --pretty=format:" - %h %ad | %s%d [%an]" --date=short --no-merges "$BASE_STRING"...HEAD >> tmpfile
|
||||||
echo "" >> tmpfile
|
echo "" >> tmpfile
|
||||||
echo "" >> tmpfile
|
echo "" >> tmpfile
|
||||||
cat $FILE_CHANGELOG >> tmpfile
|
cat $FILE_CHANGELOG >> tmpfile
|
||||||
@@ -141,4 +141,11 @@ git merge --no-ff $BRANCH_RELEASE
|
|||||||
# Remove release branch
|
# Remove release branch
|
||||||
git branch -d $BRANCH_RELEASE
|
git branch -d $BRANCH_RELEASE
|
||||||
|
|
||||||
|
echo -ne "${QUESTION_FLAG} ${CYAN}Push?"
|
||||||
|
|
||||||
|
read PUSH
|
||||||
|
if [[ $PUSH =~ [yY](es)* ]] || [ "$PUSH" = "" ]; then
|
||||||
|
git push --all origin
|
||||||
|
fi
|
||||||
|
|
||||||
echo -e "${NOTICE_FLAG} Done!"
|
echo -e "${NOTICE_FLAG} Done!"
|
||||||
|
|||||||
Reference in New Issue
Block a user