Skip to content

Commit

Permalink
Upgrade version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelbl committed Jan 17, 2020
1 parent 0c6e6a2 commit 2e4f603
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 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.1.0,)</version>
<version>[2.1.1,)</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.1.0+'
compile group: 'net.codecrete.qrbill', name: 'qrbill-generator', version: '2.1.1+'

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

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

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.1.0,)</version>
<version>[2.1.1,)</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 @@ -7,7 +7,7 @@ plugins {
}

group = 'net.codecrete.qrbill'
version = '2.1.0'
version = '2.1.1'
archivesBaseName = 'qrbill-generator'

sourceCompatibility = 1.8
Expand Down
2 changes: 1 addition & 1 deletion ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = 'net.codecrete.qrbill'
version = '2.1.0'
version = '2.1.1'

task angular(type: NpmTask) {
args = ['run', 'build']
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "2.1.0",
"version": "2.1.1",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0 --base-href /qrbill/",
Expand Down
2 changes: 1 addition & 1 deletion web/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
apply plugin: 'org.openapi.generator'

group = 'net.codecrete.qrbill'
version = '2.1.0'
version = '2.1.1'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down

0 comments on commit 2e4f603

Please sign in to comment.