Skip to content

Commit

Permalink
Display all changes in japicmp #628
Browse files Browse the repository at this point in the history
Incompatible changes only told us about breaking changes that would
normally require a major new version. This change will display
changes that in Semantic Versioning would require a minor change too.
  • Loading branch information
jonahgraham committed May 26, 2022
1 parent 98020d2 commit 5e16545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion releng/runjapicmp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ do
name=${names[$i]}

mkdir -p japicmp-report/
java -jar japicmp.jar --html-file japicmp-report/${name}.html --only-incompatible --ignore-missing-classes -n ${newjar} --new-classpath $(classpath ${newjars[@]}) -o ${oldjar} --old-classpath $(classpath org.eclipse.*)
java -jar japicmp.jar --html-file japicmp-report/${name}.html --only-modified --ignore-missing-classes -n ${newjar} --new-classpath $(classpath ${newjars[@]}) -o ${oldjar} --old-classpath $(classpath org.eclipse.*)
zip -u japicmp-report.zip japicmp-report/${name}.html
done

Expand Down

0 comments on commit 5e16545

Please sign in to comment.