Merge branch 'release-0.1.4'

This commit is contained in:
Ismo Vuorinen
2016-08-11 07:33:51 +03:00
3 changed files with 9 additions and 3 deletions

View File

@@ -1,9 +1,15 @@
## 0.1.4 (2016-08-11)
- Fix changelog url generation
[Full changelog](https://github.com/superhelio/tools/compare/0.1.3...0.1.4)
## 0.1.3 (2016-08-11) ## 0.1.3 (2016-08-11)
- Fix ssh remote url, convert to https - Fix ssh remote url, convert to https
- Take account diffs in bitbucket and github changelog urls - Take account diffs in bitbucket and github changelog urls
- Reverse commit message list - Reverse commit message list
[Full changelog](https///github.com/superhelio/tools/compare/0.1.2...0.1.3) [Full changelog](https://github.com/superhelio/tools/compare/0.1.2...0.1.3)
## 0.1.2 (2016-08-10) ## 0.1.2 (2016-08-10)

View File

@@ -1 +1 @@
0.1.3 0.1.4

View File

@@ -27,7 +27,7 @@ LATEST_HASH=$(git log --pretty=format:'%h' -n 1)
# Guess our remote url from remote.origin.url. Used to create Changelog link. # Guess our remote url from remote.origin.url. Used to create Changelog link.
# You can change this to your project url, but detection should cover 99%. # You can change this to your project url, but detection should cover 99%.
PROJECT_URL=$(git config --get remote.origin.url | sed 's/\.git//' | sed 's/\:/\//' | sed 's/git@/https\:\/\//') PROJECT_URL=$(git config --get remote.origin.url | sed 's/\.git//' | sed 's/\:/\//' | sed 's/git@/https\:\/\//' | sed 's/\/\/\//\:\/\//')
# current Git branch # current Git branch
BRANCH_CURRENT=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,') BRANCH_CURRENT=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,')