From e0033994d9b439fe96f481bac3771704774a527b Mon Sep 17 00:00:00 2001 From: Martin Mois Date: Mon, 14 Mar 2016 18:44:39 +0100 Subject: [PATCH] version increment to 0.7.1 --- README.md | 6 +++--- src/site/markdown/CliTool.md | 6 +++--- src/site/markdown/MavenPlugin.md | 8 ++++---- src/site/markdown/ReleaseNotes.md | 3 ++- src/site/markdown/index.md | 6 +++--- 5 files changed, 15 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 1a45cd266..2ec3add4d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ japicmp is a tool to compare two versions of a jar archive: - java -jar japicmp-0.7.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar + java -jar japicmp-0.7.1-jar-with-dependencies.jar -n new-version.jar -o old-version.jar It can also be used as a library: @@ -15,7 +15,7 @@ japicmp is available in the Maven Central Repository: com.github.siom79.japicmp japicmp - 0.7.0 + 0.7.1 A maven plugin allows you to integrate the checks into your build: @@ -24,7 +24,7 @@ A maven plugin allows you to integrate the checks into your build: com.github.siom79.japicmp japicmp-maven-plugin - 0.7.0 + 0.7.1 diff --git a/src/site/markdown/CliTool.md b/src/site/markdown/CliTool.md index b87653a5b..ba4ca34c8 100644 --- a/src/site/markdown/CliTool.md +++ b/src/site/markdown/CliTool.md @@ -84,13 +84,13 @@ OPTIONS When your library implements interfaces or extends classes from other libraries than the JDK and you want to evaluate binary compatibility you must specify the classpath for the two different versions: - java -jar japicmp-0.7.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar + java -jar japicmp-0.7.1-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar --old-classpath other-library-v1.jar In case the classpath for both versions did not change, you can add the library using the standard way: - java -cp japicmp-0.7.0-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar + java -cp japicmp-0.7.1-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar For reporting purposes you can also provide more than one jar as old or new version(s): - java -jar japicmp-0.7.0-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar + java -jar japicmp-0.7.1-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar diff --git a/src/site/markdown/MavenPlugin.md b/src/site/markdown/MavenPlugin.md index 6000c05fe..376013437 100644 --- a/src/site/markdown/MavenPlugin.md +++ b/src/site/markdown/MavenPlugin.md @@ -8,7 +8,7 @@ The maven plugin can be included in the pom.xml file of your artifact in the fol com.github.siom79.japicmp japicmp-maven-plugin - 0.7.0 + 0.7.1 @@ -48,13 +48,13 @@ An advanced configuration can utilize the following parameters: com.github.siom79.japicmp japicmp-maven-plugin - 0.7.0 + 0.7.1 japicmp japicmp-test-v1 - 0.7.0 + 0.7.1 jar @@ -193,7 +193,7 @@ Alternatively it can be used inside the `` tag in order to be invoke com.github.siom79.japicmp japicmp-maven-plugin - 0.7.0 + 0.7.1 diff --git a/src/site/markdown/ReleaseNotes.md b/src/site/markdown/ReleaseNotes.md index 6e5f362f4..011308748 100644 --- a/src/site/markdown/ReleaseNotes.md +++ b/src/site/markdown/ReleaseNotes.md @@ -6,10 +6,11 @@ The following versions of japicmp are available: * Exceptions declared in method signatures are now tracked and evaluated regarding source incompatibility. [#110](https://github.com/siom79/japicmp/issues/110) * HTML report now names all incompatible changes additional to the markers * and !. [#115](https://github.com/siom79/japicmp/issues/115) +* Maven plugin has new parameter postAnalysisScript that allows execution of Groovy script after comparison phase. [#120](https://github.com/siom79/japicmp/issues/120) * Method added to new interface is no longer detected as source incompatible. [#112](https://github.com/siom79/japicmp/issues/112) * Method that overrides in subinterface method from superinterface is no longer detected as source incompatible. [#113](https://github.com/siom79/japicmp/issues/113) * Excluded xerces vom maven-reporting dependency in order to prevent warnings from SAXParserImpl. [#109](https://github.com/siom79/japicmp/issues/109) -* Indirectly implemented interfaces should not be reported as removed. [#119](https://github.com/siom79/japicmp/issues/119) +* Indirectly implemented interfaces are no longer reported as removed. [#119](https://github.com/siom79/japicmp/issues/119) Available at [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.github.siom79.japicmp%22%20AND%20v%3A%220.7.1%22). diff --git a/src/site/markdown/index.md b/src/site/markdown/index.md index 7af856a58..84c47fae5 100644 --- a/src/site/markdown/index.md +++ b/src/site/markdown/index.md @@ -2,7 +2,7 @@ japicmp is a tool to compare two versions of a jar archive: - java -jar japicmp-0.7.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar + java -jar japicmp-0.7.1-jar-with-dependencies.jar -n new-version.jar -o old-version.jar It can also be used as a library: @@ -15,7 +15,7 @@ japicmp is available in the Maven Central Repository: com.github.siom79.japicmp japicmp - 0.7.0 + 0.7.1 A maven plugin allows you to integrate the checks into your build: @@ -24,7 +24,7 @@ A maven plugin allows you to integrate the checks into your build: com.github.siom79.japicmp japicmp-maven-plugin - 0.7.0 + 0.7.1