Skip to content

Commit

Permalink
Increase version number to 2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelbl committed May 13, 2020
1 parent 2bd2b88 commit 73ecb6a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ If you are using *Maven*, add the below dependency to your `pom.xml`:
<dependency>
<groupId>net.codecrete.qrbill</groupId>
<artifactId>qrbill-generator</artifactId>
<version>[2.2.3,)</version>
<version>[2.2.4,)</version>
</dependency>

If you are using *Gradle*, add the below dependency to your *build.gradle* file:

compile group: 'net.codecrete.qrbill', name: 'qrbill-generator', version: '2.2.3+'
compile group: 'net.codecrete.qrbill', name: 'qrbill-generator', version: '2.2.4+'

To generate a QR bill, you first fill in the `Bill` data structure and then call `QRBill.generate`:

Expand Down
2 changes: 1 addition & 1 deletion examples/append_to_pdf/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ task execute(type: JavaExec) {
}

dependencies {
compile group: 'net.codecrete.qrbill', name: 'qrbill-generator', version: '2.2.3+'
compile group: 'net.codecrete.qrbill', name: 'qrbill-generator', version: '2.2.4+'
}

2 changes: 1 addition & 1 deletion examples/gradle_example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ task execute(type: JavaExec) {
}

dependencies {
compile group: 'net.codecrete.qrbill', name: 'qrbill-generator', version: '2.2.3+'
compile group: 'net.codecrete.qrbill', name: 'qrbill-generator', version: '2.2.4+'
}
2 changes: 1 addition & 1 deletion examples/kotlin_example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ task execute(type: JavaExec) {

dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile "net.codecrete.qrbill:qrbill-generator:2.2.3+"
compile "net.codecrete.qrbill:qrbill-generator:2.2.4+"
}

compileKotlin {
Expand Down
2 changes: 1 addition & 1 deletion examples/maven_example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependency>
<groupId>net.codecrete.qrbill</groupId>
<artifactId>qrbill-generator</artifactId>
<version>[2.2.3,)</version>
<version>[2.2.4,)</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit 73ecb6a

Please sign in to comment.