Skip to content

Commit

Permalink
upgraded version in *.md files to 0.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
siom79 committed Sep 29, 2023
1 parent 7a4a73b commit 8ea1c2d
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ The website is located at [https://siom79.github.io/japicmp](https://siom79.gith
# japicmp
japicmp is a tool to compare two versions of a jar archive:
``` bash
java -jar japicmp-0.18.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
java -jar japicmp-0.18.1-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
```
It can also be used as a library:
```java
Expand All @@ -17,7 +17,7 @@ japicmp is available in the Maven Central Repository:
<dependency>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp</artifactId>
<version>0.18.0</version>
<version>0.18.1</version>
</dependency>
```
A maven plugin allows you to integrate the checks into your build:
Expand All @@ -26,7 +26,7 @@ A maven plugin allows you to integrate the checks into your build:
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.18.0</version>
<version>0.18.1</version>
<configuration>
<oldVersion>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions src/site/markdown/CliTool.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,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.18.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar
java -jar japicmp-0.18.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.18.0-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar
java -cp japicmp-0.18.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.18.0-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar
java -jar japicmp-0.18.1-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar
12 changes: 6 additions & 6 deletions src/site/markdown/MavenPlugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The maven plugin can be included in the pom.xml file of your artifact in the fol
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.18.0</version>
<version>0.18.1</version>
<configuration>
<oldVersion>
<dependency>
Expand Down Expand Up @@ -46,7 +46,7 @@ You can also leave out the &lt;oldVersion&gt; and &lt;newVersion&gt; elements:
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.18.0</version>
<version>0.18.1</version>
<configuration>
<parameter>
<!-- see documentation -->
Expand All @@ -70,7 +70,7 @@ to configure the latest version more precisely (e.g. only GA versions), then you
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.18.0</version>
<version>0.18.1</version>
<configuration>
<parameter>
<oldVersionPattern>\d+\.\d+\.\d+\.GA</oldVersionPattern>
Expand Down Expand Up @@ -115,13 +115,13 @@ An advanced configuration can utilize the following parameters:
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.18.0</version>
<version>0.18.1</version>
<configuration>
<oldVersion>
<dependency>
<groupId>japicmp</groupId>
<artifactId>japicmp-test-v1</artifactId>
<version>0.18.0</version>
<version>0.18.1</version>
<type>jar</type>
</dependency>
</oldVersion>
Expand Down Expand Up @@ -369,7 +369,7 @@ Alternatively it can be used inside the `<reporting/>` tag in order to be invoke
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.18.0</version>
<version>0.18.1</version>
<reportSets>
<reportSet>
<reports>
Expand Down
4 changes: 4 additions & 0 deletions src/site/markdown/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Versions

The following versions of japicmp are available:

0.18.1 (2023-09-29)
-------------------
* METHOD_NON_STATIC_IN_INTERFACE_NOW_STATIC not source and binary incompatible [#363](https://github.com/siom79/japicmp/issues/363)

0.18.0 (2023-09-22)
-------------------
* added METHOD_NEW_STATIC_ADDED_TO_INTERFACE, METHOD_NON_STATIC_IN_INTERFACE_NOW_STATIC and METHOD_STATIC_IN_INTERFACE_NO_LONGER_STATIC. [#289](https://github.com/siom79/japicmp/issues/289)
Expand Down
6 changes: 3 additions & 3 deletions src/site/markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ japicmp

japicmp is a tool to compare two versions of a jar archive:

java -jar japicmp-0.18.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
java -jar japicmp-0.18.1-jar-with-dependencies.jar -n new-version.jar -o old-version.jar

It can also be used as a library:

Expand All @@ -16,7 +16,7 @@ japicmp is available in the Maven Central Repository:
<dependency>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp</artifactId>
<version>0.18.0</version>
<version>0.18.1</version>
</dependency>

A maven plugin allows you to integrate the checks into your build:
Expand All @@ -25,7 +25,7 @@ A maven plugin allows you to integrate the checks into your build:
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.18.0</version>
<version>0.18.1</version>
<configuration>
<oldVersion>
<dependency>
Expand Down

0 comments on commit 8ea1c2d

Please sign in to comment.