Skip to content

Commit bb0eef9

Browse files
committed
upgraded version in *.md files to 0.8.1
1 parent e1e48d4 commit bb0eef9

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
@@ -2,7 +2,7 @@
22

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

5-
java -jar japicmp-0.8.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
5+
java -jar japicmp-0.8.1-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
66

77
It can also be used as a library:
88

@@ -15,7 +15,7 @@ japicmp is available in the Maven Central Repository:
1515
<dependency>
1616
<groupId>com.github.siom79.japicmp</groupId>
1717
<artifactId>japicmp</artifactId>
18-
<version>0.8.0</version>
18+
<version>0.8.1</version>
1919
</dependency>
2020

2121
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:
2424
<plugin>
2525
<groupId>com.github.siom79.japicmp</groupId>
2626
<artifactId>japicmp-maven-plugin</artifactId>
27-
<version>0.8.0</version>
27+
<version>0.8.1</version>
2828
<configuration>
2929
<oldVersion>
3030
<dependency>

src/site/markdown/CliTool.md

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

87-
java -jar japicmp-0.8.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar
87+
java -jar japicmp-0.8.1-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar
8888
--old-classpath other-library-v1.jar
8989

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

92-
java -cp japicmp-0.8.0-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar
92+
java -cp japicmp-0.8.1-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar
9393

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

96-
java -jar japicmp-0.8.0-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar
96+
java -jar japicmp-0.8.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
@@ -8,7 +8,7 @@ The maven plugin can be included in the pom.xml file of your artifact in the fol
88
<plugin>
99
<groupId>com.github.siom79.japicmp</groupId>
1010
<artifactId>japicmp-maven-plugin</artifactId>
11-
<version>0.8.0</version>
11+
<version>0.8.1</version>
1212
<configuration>
1313
<oldVersion>
1414
<dependency>
@@ -44,7 +44,7 @@ You can also leave out the &lt;oldVersion&gt; and &lt;newVersion&gt; elements:
4444
<plugin>
4545
<groupId>com.github.siom79.japicmp</groupId>
4646
<artifactId>japicmp-maven-plugin</artifactId>
47-
<version>0.8.0</version>
47+
<version>0.8.1</version>
4848
<configuration>
4949
<parameter>
5050
<!-- see documentation -->
@@ -68,7 +68,7 @@ to configure the latest version more precisely (e.g. only GA versions), then you
6868
<plugin>
6969
<groupId>com.github.siom79.japicmp</groupId>
7070
<artifactId>japicmp-maven-plugin</artifactId>
71-
<version>0.8.0</version>
71+
<version>0.8.1</version>
7272
<configuration>
7373
<parameter>
7474
<oldVersionPattern>\d+\.\d+\.\d+\.GA</oldVersionPattern>
@@ -95,13 +95,13 @@ An advanced configuration can utilize the following parameters:
9595
<plugin>
9696
<groupId>com.github.siom79.japicmp</groupId>
9797
<artifactId>japicmp-maven-plugin</artifactId>
98-
<version>0.8.0</version>
98+
<version>0.8.1</version>
9999
<configuration>
100100
<oldVersion>
101101
<dependency>
102102
<groupId>japicmp</groupId>
103103
<artifactId>japicmp-test-v1</artifactId>
104-
<version>0.8.0</version>
104+
<version>0.8.1</version>
105105
<type>jar</type>
106106
</dependency>
107107
</oldVersion>
@@ -250,7 +250,7 @@ Alternatively it can be used inside the `<reporting/>` tag in order to be invoke
250250
<plugin>
251251
<groupId>com.github.siom79.japicmp</groupId>
252252
<artifactId>japicmp-maven-plugin</artifactId>
253-
<version>0.8.0</version>
253+
<version>0.8.1</version>
254254
<reportSets>
255255
<reportSet>
256256
<reports>

src/site/markdown/index.md

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

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

5-
java -jar japicmp-0.8.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
5+
java -jar japicmp-0.8.1-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
66

77
It can also be used as a library:
88

@@ -15,7 +15,7 @@ japicmp is available in the Maven Central Repository:
1515
<dependency>
1616
<groupId>com.github.siom79.japicmp</groupId>
1717
<artifactId>japicmp</artifactId>
18-
<version>0.8.0</version>
18+
<version>0.8.1</version>
1919
</dependency>
2020

2121
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:
2424
<plugin>
2525
<groupId>com.github.siom79.japicmp</groupId>
2626
<artifactId>japicmp-maven-plugin</artifactId>
27-
<version>0.8.0</version>
27+
<version>0.8.1</version>
2828
<configuration>
2929
<oldVersion>
3030
<dependency>

0 commit comments

Comments
 (0)