From 5e1654522bfa6715abcd32652dfc39f3490d4d80 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Thu, 26 May 2022 11:00:12 -0400 Subject: [PATCH] Display all changes in japicmp #628 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. --- releng/runjapicmp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releng/runjapicmp.sh b/releng/runjapicmp.sh index 54d90c4b..74a95882 100755 --- a/releng/runjapicmp.sh +++ b/releng/runjapicmp.sh @@ -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