From f361732fd0c0156981147a30891a3be47b85503e Mon Sep 17 00:00:00 2001 From: Simon Scholz Date: Sun, 26 Nov 2023 01:31:02 +0100 Subject: [PATCH] Update version to 0.3.0-SNAPSHOT --- README.adoc | 6 +++--- gradle.properties | 2 +- java-sample/build.gradle.kts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.adoc b/README.adoc index 326c731..28b0253 100644 --- a/README.adoc +++ b/README.adoc @@ -34,7 +34,7 @@ Getting a released version: [source, kotlin] ---- dependencies { - implementation("io.github.simonscholz:qr-code-with-logo:0.1.0") + implementation("io.github.simonscholz:qr-code-with-logo:0.2.0") } ---- @@ -50,7 +50,7 @@ repositories { } dependencies { - implementation("io.github.simonscholz:qr-code-with-logo:0.2.0-SNAPSHOT") + implementation("io.github.simonscholz:qr-code-with-logo:0.3.0-SNAPSHOT") } ---- @@ -61,7 +61,7 @@ dependencies { io.github.simonscholz qr-code-with-logo - 0.1.0 + 0.2.0 ---- diff --git a/gradle.properties b/gradle.properties index e0010e2..1525fd1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ GROUP=io.github.simonscholz POM_ARTIFACT_ID=qr-code-with-logo -VERSION_NAME=0.2.0 +VERSION_NAME=0.3.0-SNAPSHOT POM_NAME=QR Code with logo POM_DESCRIPTION=Customizable qr code generatation with different colors and shapes and logos using awt diff --git a/java-sample/build.gradle.kts b/java-sample/build.gradle.kts index 16ae52e..1ccfe2b 100644 --- a/java-sample/build.gradle.kts +++ b/java-sample/build.gradle.kts @@ -13,7 +13,7 @@ repositories { } dependencies { - implementation("io.github.simonscholz:qr-code-with-logo:0.2.0-SNAPSHOT") + implementation("io.github.simonscholz:qr-code-with-logo:0.3.0-SNAPSHOT") testImplementation("org.junit.jupiter:junit-jupiter-engine:5.10.1") testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.1")