Skip to content

Commit 3216ec6

Browse files
committed
Merge pull request #63 from github/bump-to-1.5.0
Bump version, changelog for v1.5.0 release
2 parents 5d3e400 + ddeb404 commit 3216ec6

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
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)

github-ldap.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::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}

script/changelog

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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//')
1717
base=$(git tag -l | sort -n | tail -n 1)
1818
head="HEAD"
1919
api_url="https://api.github.com"
2020

21-
echo "# $base..$head"
21+
echo "# $repo $base..$head"
2222
echo
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}')
2626
do
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)]})"'

0 commit comments

Comments
 (0)