File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## v1.5.0
4+
5+ * Automatically detect membership validator strategy by default [ #58 ] ( https://github.com/github/github-ldap/pull/58 ) [ #62 ] ( https://github.com/github/github-ldap/pull/62 )
6+ * Document local integration testing with Active Directory [ #61 ] ( https://github.com/github/github-ldap/pull/61 )
7+
38## v1.4.0
49
510* Document constructor options [ #57 ] ( https://github.com/github/github-ldap/pull/57 )
Original file line number Diff line number Diff line change 22
33Gem ::Specification . new do |spec |
44 spec . name = "github-ldap"
5- spec . version = "1.4 .0"
5+ spec . version = "1.5 .0"
66 spec . authors = [ "David Calavera" ]
77 spec . email = [ "david.calavera@gmail.com" ]
88 spec . description = %q{Ldap authentication for humans}
Original file line number Diff line number Diff line change @@ -13,16 +13,16 @@ set -e
1313[ $# -eq 0 ] && set -- --help
1414
1515# parse args
16- repo=$( git remote -v | grep push | awk ' {print $2}' | cut -d' /' -f4-)
16+ repo=$( git remote -v | grep push | awk ' {print $2}' | cut -d' /' -f4- | sed ' s/\.git// ' )
1717base=$( git tag -l | sort -n | tail -n 1)
1818head=" HEAD"
1919api_url=" https://api.github.com"
2020
21- echo " # $base ..$head "
21+ echo " # $repo $ base ..$head "
2222echo
2323
2424# get merged PR's. Better way is to query the API for these, but this is easier
25- for pr in $( git log --oneline v1.3.6..HEAD | grep " Merge pull request" | awk ' {gsub("#",""); print $5}' )
25+ for pr in $( git log --oneline $base .. $head | grep " Merge pull request" | awk ' {gsub("#",""); print $5}' )
2626do
2727 # frustrated with trying to pull out the right values, fell back to ruby
2828 curl -s " $api_url /repos/$repo /pulls/$pr " | ruby -rjson -e ' pr=JSON.parse(STDIN.read); puts "* #{pr[%q(title)]} [##{pr[%q(number)]}](#{pr[%q(html_url)]})"'
You can’t perform that action at this time.
0 commit comments