From a8bb921bf2bddc0d61dc2d7372a5427d6ceeca0c Mon Sep 17 00:00:00 2001 From: MohamedRejeb Date: Fri, 24 May 2024 11:48:41 +0200 Subject: [PATCH] Update kotlin to 2.0.0 --- README.md | 8 ++++++++ .../src/main/kotlin/root.publication.gradle.kts | 2 +- docs/index.md | 8 ++++++++ 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 30eccba4..a1383ca2 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,18 @@ A rich text editor library for both Jetpack Compose and Compose Multiplatform, f Compose Rich Editor is available on `mavenCentral()`. +### K1 + ```kotlin implementation("com.mohamedrejeb.richeditor:richeditor-compose:1.0.0-rc05") ``` +### K2 + +```kotlin +implementation("com.mohamedrejeb.richeditor:richeditor-compose:1.0.0-rc05-k2") +``` + ## Quick Start #### RichTextState diff --git a/convention-plugins/src/main/kotlin/root.publication.gradle.kts b/convention-plugins/src/main/kotlin/root.publication.gradle.kts index 7dba6afd..38bafdf1 100644 --- a/convention-plugins/src/main/kotlin/root.publication.gradle.kts +++ b/convention-plugins/src/main/kotlin/root.publication.gradle.kts @@ -4,7 +4,7 @@ plugins { allprojects { group = "com.mohamedrejeb.richeditor" - version = System.getenv("VERSION") ?: "1.0.0-rc05" + version = System.getenv("VERSION") ?: "1.0.0-rc05-k2" } nexusPublishing { diff --git a/docs/index.md b/docs/index.md index 6f8cd73c..47d31b2a 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,10 +18,18 @@ A rich text editor library for both Jetpack Compose and Compose Multiplatform, f Compose Rich Editor is available on `mavenCentral()`. +### K1 + ```kotlin implementation("com.mohamedrejeb.richeditor:richeditor-compose:1.0.0-rc05") ``` +### K2 + +```kotlin +implementation("com.mohamedrejeb.richeditor:richeditor-compose:1.0.0-rc05-k2") +``` + ## Quick Start #### RichTextState