Skip to content

Commit

Permalink
fix(tooling): fix breaking change detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian W. Remmel committed May 12, 2017
1 parent 8972762 commit fb111f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tooling/version.sh
Expand Up @@ -14,7 +14,7 @@ if [ -z "${NEXT_VERSION}" ]; then
# If there are breaking changes, make it a minor bump. post-1.0, this logic
# will need to be revised
set +e
BREAKING_COUNT=$(git log --oneline upstream/master.. | grep -c '$BREAKING CHANGE:')
BREAKING_COUNT=$(git log upstream/master.. | grep -c '$BREAKING CHANGE:')
if [ $BREAKING_COUNT -gt 0 ]; then
NEXT_VERSION_TYPE=minor
fi
Expand Down

0 comments on commit fb111f6

Please sign in to comment.