Skip to content

Commit

Permalink
Increase version to 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelbl committed Jun 11, 2020
1 parent 6ef39b9 commit f5ec60f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 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.3,)</version>
<version>[2.3.2,)</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.3+'
compile group: 'net.codecrete.qrbill', name: 'qrbill-generator', version: '2.3.2+'

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.3+'
compile group: 'net.codecrete.qrbill', name: 'qrbill-generator', version: '2.3.2+'
}

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.3+'
compile group: 'net.codecrete.qrbill', name: 'qrbill-generator', version: '2.3.2+'
}
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.3+"
compile "net.codecrete.qrbill:qrbill-generator:2.3.2+"
}

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.3,)</version>
<version>[2.3.2,)</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion generator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {
}

group = 'net.codecrete.qrbill'
version = '2.3'
version = '2.3.2'
archivesBaseName = 'qrbill-generator'

sourceCompatibility = 1.8
Expand Down

0 comments on commit f5ec60f

Please sign in to comment.