diff --git a/README.md b/README.md index 61fb53f..3e04574 100644 --- a/README.md +++ b/README.md @@ -37,10 +37,10 @@ Add the following dependency to your module `build.gradle.kts` file: ```kotlin // For Adaptive UI components -api("com.mohamedrejeb.calf:calf-ui:0.3.0") +api("com.mohamedrejeb.calf:calf-ui:0.3.1") // For Adaptive FilePicker -implementation("com.mohamedrejeb.calf:calf-file-picker:0.3.0") +implementation("com.mohamedrejeb.calf:calf-file-picker:0.3.1") ``` If you are using `calf-ui` artifact, make sure to export it to binaries: @@ -56,7 +56,7 @@ kotlin { .forEach { it.binaries.framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.3.0") + export("com.mohamedrejeb.calf:calf-ui:0.3.1") } } ... @@ -73,7 +73,7 @@ kotlin { ... framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.3.0") + export("com.mohamedrejeb.calf:calf-ui: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 6abec7c..ad65ab2 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 = "0.3.0" + version = "0.3.1" } nexusPublishing { diff --git a/docs/filepicker.md b/docs/filepicker.md index 31d01b8..6214e36 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.3.0") +implementation("com.mohamedrejeb.calf:calf-file-picker:0.3.1") ``` ## Usage diff --git a/docs/installation.md b/docs/installation.md index c063d1e..1231448 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -6,13 +6,13 @@ Add the following dependencies to your module `build.gradle.kts` file: ```kotlin // For Adaptive UI components -api("com.mohamedrejeb.calf:calf-ui:0.3.0") +api("com.mohamedrejeb.calf:calf-ui:0.3.1") // For Adaptive FilePicker -implementation("com.mohamedrejeb.calf:calf-file-picker:0.3.0") +implementation("com.mohamedrejeb.calf:calf-file-picker:0.3.1") // For Permissions -implementation("com.mohamedrejeb.calf:calf-permissions:0.3.0") +implementation("com.mohamedrejeb.calf:calf-permissions:0.3.1") ``` If you are using `calf-ui` artifact, make sure to export it to binaries: @@ -28,7 +28,7 @@ kotlin { .forEach { it.binaries.framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.3.0") + export("com.mohamedrejeb.calf:calf-ui:0.3.1") } } ... @@ -45,7 +45,7 @@ kotlin { ... framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.3.0") + export("com.mohamedrejeb.calf:calf-ui:0.3.1") } } ... diff --git a/docs/permissions.md b/docs/permissions.md index a308467..6f52524 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.3.0") +implementation("com.mohamedrejeb.calf:calf-permissions:0.3.1") ``` ## Usage diff --git a/docs/ui.md b/docs/ui.md index fd908e8..d985aad 100644 --- a/docs/ui.md +++ b/docs/ui.md @@ -7,7 +7,7 @@ Add the following dependency to your module `build.gradle.kts` file: ```kotlin -api("com.mohamedrejeb.calf:calf-ui:0.3.0") +api("com.mohamedrejeb.calf:calf-ui:0.3.1") ``` If you are using `calf-ui` artifact, make sure to export it to binaries: @@ -23,7 +23,7 @@ kotlin { .forEach { it.binaries.framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.3.0") + export("com.mohamedrejeb.calf:calf-ui:0.3.1") } } ... @@ -40,7 +40,7 @@ kotlin { ... framework { ... - export("com.mohamedrejeb.calf:calf-ui:0.3.0") + export("com.mohamedrejeb.calf:calf-ui:0.3.1") } } ...