Skip to content

Commit

Permalink
Simplify release changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Feb 26, 2020
1 parent 59daa02 commit 5ca18b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/release
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SKIP_NONRAILS_TESTS=1 bundle exec rspec spec

changelog() {
local previous_tag="$(git describe --tags HEAD^ --abbrev=0)"
git log --no-merges --format='* %s%n%w(0,2,2)%+b' --reverse "${previous_tag}..HEAD^" "$@"
git log --first-parent --format='* %s%n%w(0,2,2)%+b' --reverse "${previous_tag}..HEAD^" "$@"
}

gem build *.gemspec | awk '/(Name|Version|File): /{print $2}' | xargs | while read name version gemfile; do
Expand Down

0 comments on commit 5ca18b7

Please sign in to comment.