Skip to content

Commit 73f84a8

Browse files
committed
upgraded version in *.md files to 0.23.1
1 parent 66b8f99 commit 73f84a8

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.23.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
6+
java -jar japicmp-0.23.1-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.23.0</version>
20+
<version>0.23.1</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.23.0</version>
29+
<version>0.23.1</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
@@ -146,13 +146,13 @@ OPTIONS
146146
When your library implements interfaces or extends classes from other libraries than the JDK and you want to evaluate binary
147147
compatibility you must specify the classpath for the two different versions:
148148

149-
java -jar japicmp-0.23.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar
149+
java -jar japicmp-0.23.1-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar
150150
--old-classpath other-library-v1.jar
151151

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

154-
java -cp japicmp-0.23.0-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar
154+
java -cp japicmp-0.23.1-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar
155155

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

158-
java -jar japicmp-0.23.0-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar
158+
java -jar japicmp-0.23.1-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.23.0</version>
13+
<version>0.23.1</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.23.0</version>
49+
<version>0.23.1</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.23.0</version>
73+
<version>0.23.1</version>
7474
<configuration>
7575
<parameter>
7676
<oldVersionPattern>\d+\.\d+\.\d+\.GA</oldVersionPattern>
@@ -116,13 +116,13 @@ An advanced configuration can utilize the following parameters:
116116
<plugin>
117117
<groupId>com.github.siom79.japicmp</groupId>
118118
<artifactId>japicmp-maven-plugin</artifactId>
119-
<version>0.23.0</version>
119+
<version>0.23.1</version>
120120
<configuration>
121121
<oldVersion>
122122
<dependency>
123123
<groupId>japicmp</groupId>
124124
<artifactId>japicmp-test-v1</artifactId>
125-
<version>0.23.0</version>
125+
<version>0.23.1</version>
126126
<type>jar</type>
127127
</dependency>
128128
</oldVersion>
@@ -382,7 +382,7 @@ Alternatively it can be used inside the `<reporting/>` tag in order to be invoke
382382
<plugin>
383383
<groupId>com.github.siom79.japicmp</groupId>
384384
<artifactId>japicmp-maven-plugin</artifactId>
385-
<version>0.23.0</version>
385+
<version>0.23.1</version>
386386
<reportSets>
387387
<reportSet>
388388
<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.23.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
6+
java -jar japicmp-0.23.1-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.23.0</version>
19+
<version>0.23.1</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.23.0</version>
28+
<version>0.23.1</version>
2929
<configuration>
3030
<oldVersion>
3131
<dependency>

0 commit comments

Comments
 (0)