Skip to content

Commit 16e1505

Browse files
committed
upgraded version in *.md files to 0.18.3
1 parent 543ca39 commit 16e1505

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The website is located at [https://siom79.github.io/japicmp](https://siom79.gith
33
# japicmp
44
japicmp is a tool to compare two versions of a jar archive:
55
``` bash
6-
java -jar japicmp-0.18.2-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
6+
java -jar japicmp-0.18.3-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
77
```
88
It can also be used as a library:
99
```java
@@ -17,7 +17,7 @@ japicmp is available in the Maven Central Repository:
1717
<dependency>
1818
<groupId>com.github.siom79.japicmp</groupId>
1919
<artifactId>japicmp</artifactId>
20-
<version>0.18.2</version>
20+
<version>0.18.3</version>
2121
</dependency>
2222
```
2323
A maven plugin allows you to integrate the checks into your build:
@@ -26,7 +26,7 @@ A maven plugin allows you to integrate the checks into your build:
2626
<plugin>
2727
<groupId>com.github.siom79.japicmp</groupId>
2828
<artifactId>japicmp-maven-plugin</artifactId>
29-
<version>0.18.2</version>
29+
<version>0.18.3</version>
3030
<configuration>
3131
<oldVersion>
3232
<dependency>

src/site/markdown/CliTool.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,13 @@ OPTIONS
137137
When your library implements interfaces or extends classes from other libraries than the JDK and you want to evaluate binary
138138
compatibility you must specify the classpath for the two different versions:
139139

140-
java -jar japicmp-0.18.2-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar
140+
java -jar japicmp-0.18.3-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar
141141
--old-classpath other-library-v1.jar
142142

143143
In case the classpath for both versions did not change, you can add the library using the standard way:
144144

145-
java -cp japicmp-0.18.2-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar
145+
java -cp japicmp-0.18.3-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar
146146

147147
For reporting purposes you can also provide more than one jar as old or new version(s):
148148

149-
java -jar japicmp-0.18.2-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar
149+
java -jar japicmp-0.18.3-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar

src/site/markdown/MavenPlugin.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The maven plugin can be included in the pom.xml file of your artifact in the fol
1010
<plugin>
1111
<groupId>com.github.siom79.japicmp</groupId>
1212
<artifactId>japicmp-maven-plugin</artifactId>
13-
<version>0.18.2</version>
13+
<version>0.18.3</version>
1414
<configuration>
1515
<oldVersion>
1616
<dependency>
@@ -46,7 +46,7 @@ You can also leave out the &lt;oldVersion&gt; and &lt;newVersion&gt; elements:
4646
<plugin>
4747
<groupId>com.github.siom79.japicmp</groupId>
4848
<artifactId>japicmp-maven-plugin</artifactId>
49-
<version>0.18.2</version>
49+
<version>0.18.3</version>
5050
<configuration>
5151
<parameter>
5252
<!-- see documentation -->
@@ -70,7 +70,7 @@ to configure the latest version more precisely (e.g. only GA versions), then you
7070
<plugin>
7171
<groupId>com.github.siom79.japicmp</groupId>
7272
<artifactId>japicmp-maven-plugin</artifactId>
73-
<version>0.18.2</version>
73+
<version>0.18.3</version>
7474
<configuration>
7575
<parameter>
7676
<oldVersionPattern>\d+\.\d+\.\d+\.GA</oldVersionPattern>
@@ -115,13 +115,13 @@ An advanced configuration can utilize the following parameters:
115115
<plugin>
116116
<groupId>com.github.siom79.japicmp</groupId>
117117
<artifactId>japicmp-maven-plugin</artifactId>
118-
<version>0.18.2</version>
118+
<version>0.18.3</version>
119119
<configuration>
120120
<oldVersion>
121121
<dependency>
122122
<groupId>japicmp</groupId>
123123
<artifactId>japicmp-test-v1</artifactId>
124-
<version>0.18.2</version>
124+
<version>0.18.3</version>
125125
<type>jar</type>
126126
</dependency>
127127
</oldVersion>
@@ -369,7 +369,7 @@ Alternatively it can be used inside the `<reporting/>` tag in order to be invoke
369369
<plugin>
370370
<groupId>com.github.siom79.japicmp</groupId>
371371
<artifactId>japicmp-maven-plugin</artifactId>
372-
<version>0.18.2</version>
372+
<version>0.18.3</version>
373373
<reportSets>
374374
<reportSet>
375375
<reports>

src/site/markdown/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ japicmp
33

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

6-
java -jar japicmp-0.18.2-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
6+
java -jar japicmp-0.18.3-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
77

88
It can also be used as a library:
99

@@ -16,7 +16,7 @@ japicmp is available in the Maven Central Repository:
1616
<dependency>
1717
<groupId>com.github.siom79.japicmp</groupId>
1818
<artifactId>japicmp</artifactId>
19-
<version>0.18.2</version>
19+
<version>0.18.3</version>
2020
</dependency>
2121

2222
A maven plugin allows you to integrate the checks into your build:
@@ -25,7 +25,7 @@ A maven plugin allows you to integrate the checks into your build:
2525
<plugin>
2626
<groupId>com.github.siom79.japicmp</groupId>
2727
<artifactId>japicmp-maven-plugin</artifactId>
28-
<version>0.18.2</version>
28+
<version>0.18.3</version>
2929
<configuration>
3030
<oldVersion>
3131
<dependency>

0 commit comments

Comments
 (0)