diff --git a/README.md b/README.md index 5cd7d49..a393460 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ You can try the web demo [here](https://calf-library.netlify.app/) | Kotlin version | Compose version | Calf version | |----------------|-----------------|--------------| +| 2.1.0 | 1.7.3 | 0.7.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 | diff --git a/convention-plugins/src/main/kotlin/root.publication.gradle.kts b/convention-plugins/src/main/kotlin/root.publication.gradle.kts index 14e19de..650dbac 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.1" + version = System.getenv("VERSION") ?: "0.7.0" } nexusPublishing { diff --git a/docs/filepicker.md b/docs/filepicker.md index feaddf7..203649d 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.1") +implementation("com.mohamedrejeb.calf:calf-file-picker:0.7.0") ``` ## Usage diff --git a/docs/installation.md b/docs/installation.md index 1485a12..5a62394 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -4,6 +4,7 @@ | Kotlin version | Compose version | Calf version | |----------------|-----------------|--------------| +| 2.1.0 | 1.7.3 | 0.7.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 | @@ -15,16 +16,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.1") +api("com.mohamedrejeb.calf:calf-ui:0.7.0") // For WebView -implementation("com.mohamedrejeb.calf:calf-webview:0.6.1") +implementation("com.mohamedrejeb.calf:calf-webview:0.7.0") // For FilePicker -implementation("com.mohamedrejeb.calf:calf-file-picker:0.6.1") +implementation("com.mohamedrejeb.calf:calf-file-picker:0.7.0") // For Permissions -implementation("com.mohamedrejeb.calf:calf-permissions:0.6.1") +implementation("com.mohamedrejeb.calf:calf-permissions:0.7.0") ``` If you are using `calf-ui` artifact, make sure to export it to binaries: @@ -40,7 +41,7 @@ kotlin { .forEach { it.binaries.framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.6.1") + export("com.mohamedrejeb.calf:calf-ui:0.7.0") } } ... @@ -57,7 +58,7 @@ kotlin { ... framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.6.1") + export("com.mohamedrejeb.calf:calf-ui:0.7.0") } } ... diff --git a/docs/permissions.md b/docs/permissions.md index e6618a3..ca8d635 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.1") +implementation("com.mohamedrejeb.calf:calf-permissions:0.7.0") ``` ## Usage diff --git a/docs/ui.md b/docs/ui.md index d35755b..449e876 100644 --- a/docs/ui.md +++ b/docs/ui.md @@ -6,6 +6,7 @@ | Kotlin version | Compose version | Calf version | |----------------|-----------------|--------------| +| 2.1.0 | 1.7.3 | 0.7.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 | @@ -16,7 +17,7 @@ Add the following dependency to your module `build.gradle.kts` file: ```kotlin -api("com.mohamedrejeb.calf:calf-ui:0.6.1") +api("com.mohamedrejeb.calf:calf-ui:0.7.0") ``` If you are using `calf-ui` artifact, make sure to export it to binaries: @@ -32,7 +33,7 @@ kotlin { .forEach { it.binaries.framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.6.1") + export("com.mohamedrejeb.calf:calf-ui:0.7.0") } } ... @@ -49,7 +50,7 @@ kotlin { ... framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.6.1") + export("com.mohamedrejeb.calf:calf-ui:0.7.0") } } ... diff --git a/docs/webview.md b/docs/webview.md index ffe3a71..273a3f0 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.1") +implementation("com.mohamedrejeb.calf:calf-webview:0.7.0") ``` ## Usage