From 59086cdfc3eefa0a2e319175334381a2e32e3014 Mon Sep 17 00:00:00 2001 From: MohamedRejeb Date: Wed, 24 Jul 2024 07:27:09 +0100 Subject: [PATCH] Update version to 0.5.2 --- README.md | 2 +- convention-plugins/src/main/kotlin/Publication.kt | 2 +- docs/filepicker.md | 2 +- docs/installation.md | 14 +++++++------- docs/permissions.md | 2 +- docs/ui.md | 8 ++++---- docs/webview.md | 2 +- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index d3a498f..b6ee42e 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ You can try the web demo [here](https://calf-library.netlify.app/) | Kotlin version | Compose version | Calf version | |----------------|-----------------|--------------| -| 2.0.0 | 1.6.11 | 0.5.1 | +| 2.0.0 | 1.6.11 | 0.5.2 | | 1.9.22 | 1.6.0 | 0.4.1 | | 1.9.21 | 1.5.11 | 0.3.1 | | 1.9.20 | 1.5.10 | 0.2.0 | diff --git a/convention-plugins/src/main/kotlin/Publication.kt b/convention-plugins/src/main/kotlin/Publication.kt index cedd549..a24532b 100644 --- a/convention-plugins/src/main/kotlin/Publication.kt +++ b/convention-plugins/src/main/kotlin/Publication.kt @@ -12,7 +12,7 @@ fun Project.rootPublicationSetup() { allprojects { group = "com.mohamedrejeb.calf" - version = System.getenv("VERSION") ?: "0.5.1" + version = System.getenv("VERSION") ?: "0.5.2" } nexusPublishing { diff --git a/docs/filepicker.md b/docs/filepicker.md index aa6f5f8..3c97e6c 100644 --- a/docs/filepicker.md +++ b/docs/filepicker.md @@ -7,7 +7,7 @@ Add the following dependency to your module `build.gradle.kts` file: ```kotlin -implementation("com.mohamedrejeb.calf:calf-file-picker:0.5.1") +implementation("com.mohamedrejeb.calf:calf-file-picker:0.5.2") ``` ## Usage diff --git a/docs/installation.md b/docs/installation.md index 0e4c3dd..9b74cc9 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -4,7 +4,7 @@ | Kotlin version | Compose version | Calf version | |----------------|-----------------|--------------| -| 1.9.22 | 1.6.0 | 0.5.1 | +| 1.9.22 | 1.6.0 | 0.5.2 | | 1.9.21 | 1.5.11 | 0.3.1 | | 1.9.20 | 1.5.10 | 0.2.0 | | 1.9.0 | 1.5.0 | 0.1.1 | @@ -13,16 +13,16 @@ Add the following dependencies to your module `build.gradle.kts` file: ```kotlin // For Adaptive UI components -api("com.mohamedrejeb.calf:calf-ui:0.5.1") +api("com.mohamedrejeb.calf:calf-ui:0.5.2") // For WebView -implementation("com.mohamedrejeb.calf:calf-webview:0.5.1") +implementation("com.mohamedrejeb.calf:calf-webview:0.5.2") // For FilePicker -implementation("com.mohamedrejeb.calf:calf-file-picker:0.5.1") +implementation("com.mohamedrejeb.calf:calf-file-picker:0.5.2") // For Permissions -implementation("com.mohamedrejeb.calf:calf-permissions:0.5.1") +implementation("com.mohamedrejeb.calf:calf-permissions:0.5.2") ``` If you are using `calf-ui` artifact, make sure to export it to binaries: @@ -38,7 +38,7 @@ kotlin { .forEach { it.binaries.framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.5.1") + export("com.mohamedrejeb.calf:calf-ui:0.5.2") } } ... @@ -55,7 +55,7 @@ kotlin { ... framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.5.1") + export("com.mohamedrejeb.calf:calf-ui:0.5.2") } } ... diff --git a/docs/permissions.md b/docs/permissions.md index ae2c1a3..a69b785 100644 --- a/docs/permissions.md +++ b/docs/permissions.md @@ -7,7 +7,7 @@ Add the following dependency to your module `build.gradle.kts` file: ```kotlin -implementation("com.mohamedrejeb.calf:calf-permissions:0.5.1") +implementation("com.mohamedrejeb.calf:calf-permissions:0.5.2") ``` ## Usage diff --git a/docs/ui.md b/docs/ui.md index 47cc6c1..002a657 100644 --- a/docs/ui.md +++ b/docs/ui.md @@ -6,7 +6,7 @@ | Kotlin version | Compose version | Calf version | |----------------|-----------------|--------------| -| 2.0.0 | 1.6.11 | 0.5.1 | +| 2.0.0 | 1.6.11 | 0.5.2 | | 1.9.22 | 1.6.0 | 0.4.1 | | 1.9.21 | 1.5.11 | 0.3.1 | | 1.9.20 | 1.5.10 | 0.2.0 | @@ -15,7 +15,7 @@ Add the following dependency to your module `build.gradle.kts` file: ```kotlin -api("com.mohamedrejeb.calf:calf-ui:0.5.1") +api("com.mohamedrejeb.calf:calf-ui:0.5.2") ``` If you are using `calf-ui` artifact, make sure to export it to binaries: @@ -31,7 +31,7 @@ kotlin { .forEach { it.binaries.framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.5.1") + export("com.mohamedrejeb.calf:calf-ui:0.5.2") } } ... @@ -48,7 +48,7 @@ kotlin { ... framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.5.1") + export("com.mohamedrejeb.calf:calf-ui:0.5.2") } } ... diff --git a/docs/webview.md b/docs/webview.md index c8d0fb0..564d6a7 100644 --- a/docs/webview.md +++ b/docs/webview.md @@ -7,7 +7,7 @@ Add the following dependency to your module `build.gradle.kts` file: ```kotlin -implementation("com.mohamedrejeb.calf:calf-webview:0.5.1") +implementation("com.mohamedrejeb.calf:calf-webview:0.5.2") ``` ## Usage