Skip to content

Commit

Permalink
Increase version to 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelbl committed Oct 24, 2024
1 parent 649e31f commit aab9975
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,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>[3.3.0,3.999999]</version>
<version>[3.3.1,3.999999]</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: '3.3.0+'
compile group: 'net.codecrete.qrbill', name: 'qrbill-generator', version: '3.3.1+'

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

Expand Down
6 changes: 3 additions & 3 deletions examples/jasper_reports_rendering/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>net.codecrete.qrbill</groupId>
<artifactId>jasper-reports-rendering</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>

<name>Jasper Reports Rendering</name>
<description>Demo application using Jasper Reports to generate QR bills.</description>
Expand All @@ -32,7 +32,7 @@
<dependency>
<groupId>net.codecrete.qrbill</groupId>
<artifactId>qrbill-generator</artifactId>
<version>[3.3.0,3.999999]</version>
<version>[3.3.1,3.999999]</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -110,7 +110,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin_example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group 'net.codecrete.qrbill.examples'
version '3.3.0'
version '3.3.1'

repositories {
mavenLocal()
Expand Down
4 changes: 2 additions & 2 deletions examples/maven_example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>net.codecrete.qrbill</groupId>
<artifactId>maven-example</artifactId>
<packaging>jar</packaging>
<version>3.3.0</version>
<version>3.3.1</version>
<name>QR Bill Maven Example</name>

<properties>
Expand Down Expand Up @@ -35,7 +35,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<executions>
<execution>
<goals>
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 = '3.3.0'
version = '3.3.1'
archivesBaseName = 'qrbill-generator'

java {
Expand Down

0 comments on commit aab9975

Please sign in to comment.