diff --git a/README.md b/README.md index 0800593..5cd7d49 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.21 | 1.7.0 | 0.6.0 | +| 2.0.21 | 1.7.0 | 0.6.1 | | 2.0.10 | 1.6.11 | 0.5.5 | | 1.9.22 | 1.6.0 | 0.4.1 | | 1.9.21 | 1.5.11 | 0.3.1 | diff --git a/convention-plugins/src/main/kotlin/root.publication.gradle.kts b/convention-plugins/src/main/kotlin/root.publication.gradle.kts index 8f0db9b..14e19de 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.calf" - version = System.getenv("VERSION") ?: "0.6.0" + version = System.getenv("VERSION") ?: "0.6.1" } nexusPublishing { diff --git a/docs/filepicker.md b/docs/filepicker.md index 92d0f3d..feaddf7 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.6.0") +implementation("com.mohamedrejeb.calf:calf-file-picker:0.6.1") ``` ## Usage diff --git a/docs/installation.md b/docs/installation.md index 66ac9e7..73a366c 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -4,7 +4,7 @@ | Kotlin version | Compose version | Calf version | |----------------|-----------------|--------------| -| 2.0.21 | 1.7.0 | 0.6.0 | +| 2.0.21 | 1.7.0 | 0.6.1 | | 2.0.10 | 1.6.11 | 0.5.5 | | 1.9.22 | 1.6.0 | 0.4.1 | | 1.9.21 | 1.5.11 | 0.3.1 | @@ -15,16 +15,16 @@ Add the following dependencies to your module `build.gradle.kts` file: ```kotlin // For Adaptive UI components -api("com.mohamedrejeb.calf:calf-ui:0.6.0") +api("com.mohamedrejeb.calf:calf-ui:0.6.1") // For WebView -implementation("com.mohamedrejeb.calf:calf-webview:0.6.0") +implementation("com.mohamedrejeb.calf:calf-webview:0.6.1") // For FilePicker -implementation("com.mohamedrejeb.calf:calf-file-picker:0.6.0") +implementation("com.mohamedrejeb.calf:calf-file-picker:0.6.1") // For Permissions -implementation("com.mohamedrejeb.calf:calf-permissions:0.6.0") +implementation("com.mohamedrejeb.calf:calf-permissions:0.6.1") ``` If you are using `calf-ui` artifact, make sure to export it to binaries: @@ -40,7 +40,7 @@ kotlin { .forEach { it.binaries.framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.6.0") + export("com.mohamedrejeb.calf:calf-ui:0.6.1") } } ... @@ -57,7 +57,7 @@ kotlin { ... framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.6.0") + export("com.mohamedrejeb.calf:calf-ui:0.6.1") } } ... diff --git a/docs/permissions.md b/docs/permissions.md index f6b8864..e6618a3 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.6.0") +implementation("com.mohamedrejeb.calf:calf-permissions:0.6.1") ``` ## Usage diff --git a/docs/ui.md b/docs/ui.md index 1ff28f4..d35755b 100644 --- a/docs/ui.md +++ b/docs/ui.md @@ -6,7 +6,7 @@ | Kotlin version | Compose version | Calf version | |----------------|-----------------|--------------| -| 2.0.21 | 1.7.0 | 0.6.0 | +| 2.0.21 | 1.7.0 | 0.6.1 | | 2.0.10 | 1.6.11 | 0.5.5 | | 1.9.22 | 1.6.0 | 0.4.1 | | 1.9.21 | 1.5.11 | 0.3.1 | @@ -16,7 +16,7 @@ Add the following dependency to your module `build.gradle.kts` file: ```kotlin -api("com.mohamedrejeb.calf:calf-ui:0.6.0") +api("com.mohamedrejeb.calf:calf-ui:0.6.1") ``` If you are using `calf-ui` artifact, make sure to export it to binaries: @@ -32,7 +32,7 @@ kotlin { .forEach { it.binaries.framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.6.05") + export("com.mohamedrejeb.calf:calf-ui:0.6.1") } } ... @@ -49,7 +49,7 @@ kotlin { ... framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.6.0") + export("com.mohamedrejeb.calf:calf-ui:0.6.1") } } ... diff --git a/docs/webview.md b/docs/webview.md index 924be92..ffe3a71 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.6.0") +implementation("com.mohamedrejeb.calf:calf-webview:0.6.1") ``` ## Usage