Skip to content

Commit

Permalink
Upgrade version to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelbl committed Feb 20, 2019
1 parent f065eff commit 8c70cd9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Open-source Java library to generate Swiss QR bills (jointly developed with the

Try it yourself and [create a QR bill](https://www.codecrete.net/qrbill). The code for this demonstration (Angular UI and RESTful service) can also be found here.

**Note: Release 2.0.1-RC1 is available. It implements version 2 of the *Swiss Implementation Guidelines QR-bill* released on November 15, 2019 and the *Style guide* released in January 2019.**
**Note: Release 2.0.1 is available. It implements version 2 of the *Swiss Implementation Guidelines QR-bill* released on November 15, 2019 and the *Style guide* released in January 2019.**

## Introduction

Expand All @@ -21,6 +21,7 @@ The invoicing party can easily synchronize the received payment with the account
The Swiss QR bill library:

- generates PDF, SVG and PNG files
- add QR bill to existing PDF file
- generates payment slip (105mm by 210mm), A4 sheets or QR code only
- multilingual: German, French, Italian, English
- validates the invoice data and provides detailed validation information
Expand All @@ -40,7 +41,7 @@ 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.0.1-RC1,)</version>
<version>[2.0.1,)</version>
</dependency>

If you are using *Gradle*, add the below dependency to your *build.gradle* file:
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.0.1-RC1'
version = '2.0.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.0.1-RC1'
version = '2.0.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.0.1-RC1",
"version": "2.0.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 @@ -15,7 +15,7 @@ plugins {
apply plugin: 'org.openapi.generator'

group = 'net.codecrete.qrbill'
version = '2.0.1-RC1'
version = '2.0.1'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down
2 changes: 1 addition & 1 deletion web/src/main/resources/static/qrbill.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ info:
characters are used, they are automatically replaced. The validation result contains warnings about
truncations and replacements.
version: 2.0.1-RC1
version: 2.0.1
license:
name: "MIT License"
url: "https://opensource.org/licenses/MIT"
Expand Down

0 comments on commit 8c70cd9

Please sign in to comment.