4 Commits
0.1.0 ... 0.1.1

Author SHA1 Message Date
Ismo Vuorinen
ea7562a48d Merge branch 'release-0.1.1' 2016-08-10 13:45:42 +03:00
Ismo Vuorinen
2f85fb63a3 Incrementing version number to 0.1.1 2016-08-10 13:45:42 +03:00
Ismo Vuorinen
58abebab4f Echo into the temp file, not to the screen 2016-08-10 13:44:42 +03:00
Ismo Vuorinen
7b11e1d3ef Merge branch 'release-0.1.0' into develop 2016-08-10 13:43:45 +03:00
3 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
## 0.1.1 (2016-08-10)
- Echo into the temp file, not to the screen
[Full changelog](https://github.com/superhelio/tools.git/compare/0.1.0...0.1.1)
## 0.1.0 (2016-08-10)
- Remove paging from git log, works better for automation
- Change changelog formatting to simple message

View File

@@ -1 +1 @@
0.1.0
0.1.1

View File

@@ -118,7 +118,7 @@ echo "$NEW_VERSION" > "$FILE_VERSION"
echo "## $NEW_VERSION ($NOW)" > tmpfile
git --no-pager log --pretty=format:" - %s" --date=short --no-merges "$BASE_STRING"...HEAD >> tmpfile
echo "" >> tmpfile
echo "[Full changelog]($PROJECT_URL/compare/$BASE_STRING...$NEW_VERSION)"
echo "[Full changelog]($PROJECT_URL/compare/$BASE_STRING...$NEW_VERSION)" >> tmpfile
echo "" >> tmpfile
echo "" >> tmpfile
cat "$FILE_CHANGELOG" >> tmpfile