From f07b7d150562d126721dd7dc8cc7c089c64c14db Mon Sep 17 00:00:00 2001 From: Mikkel ALMONTE--RINGAUD Date: Sat, 12 Oct 2024 13:07:19 +0200 Subject: [PATCH] chore: release v1.0.0 --- README.md | 6 +++--- library/build.gradle.kts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5fdffec..5f13a37 100644 --- a/README.md +++ b/README.md @@ -10,20 +10,20 @@ ink.literate pawnote - 0.0.0 + 1.0.0 ``` ### Gradle (Kotlin) ```kotlin -implementation("ink.literate:pawnote:0.0.0") +implementation("ink.literate:pawnote:1.0.0") ``` ### Gradle ```groovy -implementation 'ink.literate:pawnote:0.0.0' +implementation 'ink.literate:pawnote:1.0.0' ``` ## Documentation diff --git a/library/build.gradle.kts b/library/build.gradle.kts index 9821c19..d6fb707 100644 --- a/library/build.gradle.kts +++ b/library/build.gradle.kts @@ -4,7 +4,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget val libraryName = "Pawnote" -version = "0.0.0" +version = "1.0.0" plugins { alias(libs.plugins.kotlinMultiplatform)