Skip to content

Commit

Permalink
Merge branch 'for-70/vv/prepare_release_updates' into pending
Browse files Browse the repository at this point in the history
  • Loading branch information
stellarhopper committed Oct 5, 2020
2 parents 17bbac2 + 41d0438 commit b3e25c8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions contrib/prepare-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ gen_lists()
{
local range="$1"

git shortlog "$range" > release/shortlog
git log --pretty=format:"%s" "$range" > release/commits
git shortlog --no-merges "$range" > release/shortlog
git log --no-merges --pretty=format:"%s" "$range" > release/commits
c_count=$(git log --pretty=format:"%s" "$range" | wc -l)
}

Expand Down Expand Up @@ -182,7 +182,8 @@ next_fix=$(next_fix "$last_fix")
check_libtool_vers "libndctl"
check_libtool_vers "libdaxctl"

gen_lists ${last_ref}..HEAD
# HEAD~1 because HEAD would be the release commit
gen_lists ${last_ref}..HEAD~1

# For ABI diff purposes, use the latest fixes tag
contrib/do_abidiff ${last_fix}..HEAD
Expand Down

0 comments on commit b3e25c8

Please sign in to comment.