diff --git a/README.md b/README.md index 5168b1f..9d9c8b4 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Platforms](https://img.shields.io/badge/desktop-Windows%20%7C%20macOS%20%7C%20Linux-blue)](https://github.com/avan1235/compose-extensions/releases) [![Kotlin](https://img.shields.io/badge/Kotlin-2.0.0-RC2-green.svg?logo=kotlin)](https://github.com/JetBrains/kotlin) -[![Compose](https://img.shields.io/badge/Compose%20Multiplatform-1.6.10-rc03-green.svg?logo=jetpack-compose)](https://github.com/JetBrains/compose-multiplatform) +[![Compose](https://img.shields.io/badge/Compose%20Multiplatform-1.6.10-green.svg?logo=jetpack-compose)](https://github.com/JetBrains/compose-multiplatform) [![Maven Central](https://img.shields.io/maven-central/v/in.procyk.compose/camera-qr?label=Maven%20Central&color=green)](https://central.sonatype.com/namespace/in.procyk.compose) [![Latest Release](https://img.shields.io/github/v/release/avan1235/compose-extensions?label=Release&color=green)](https://github.com/avan1235/compose-extensions/releases) [![Build](https://img.shields.io/github/actions/workflow/status/avan1235/compose-extensions/release.yml?label=Build&color=green)](https://github.com/avan1235/compose-extensions/actions/workflows/release.yml) @@ -21,7 +21,7 @@ are self-contained and allow to deploy compose applications to Android, iOS and Select the extension that you find useful in your project and put ```kotlin -implementation("in.procyk.compose:extension-name:1.6.10-rc03.0") +implementation("in.procyk.compose:extension-name:1.6.10.0") ``` into your `commonMain` source set's dependencies block, where `extension-name` should be replaced with the @@ -33,12 +33,12 @@ See some example in [examples](./examples) project, where every extension is add - `calendar` - calendar compose implementation migrated to Kotlin Multiplatform from [ComposeCalendar](https://github.com/boguszpawlowski/ComposeCalendar). See sample usage [here](./examples/src/commonMain/kotlin/in/procyk/compose/examples/Calendars.kt). ```kotlin - implementation("in.procyk.compose:calendar:1.6.10-rc03.0") + implementation("in.procyk.compose:calendar:1.6.10.0") ``` - `camera-qr` - detecting QR codes camera view. See sample usage [here](./examples/src/commonMain/kotlin/in/procyk/compose/examples/CameraQR.kt). ```kotlin - implementation("in.procyk.compose:camera-qr:1.6.10-rc03.0") + implementation("in.procyk.compose:camera-qr:1.6.10.0") ``` - for Android Application add to [AndroidManifest.xml](./examples/src/androidMain/AndroidManifest.xml) ```xml @@ -69,10 +69,10 @@ See some example in [examples](./examples) project, where every extension is add - `camera-permission` - ask for camera permission. See sample usage [here](./examples/src/commonMain/kotlin/in/procyk/compose/examples/CameraPermission.kt). ```kotlin - implementation("in.procyk.compose:camera-permission:1.6.10-rc03.0") + implementation("in.procyk.compose:camera-permission:1.6.10.0") ``` - `util` - handy functions to work with compose. Explore the [directory](./util/src/commonMain/kotlin/in/procyk/compose/util) to see what cool features are available. ```kotlin - implementation("in.procyk.compose:util:1.6.10-rc03.0") + implementation("in.procyk.compose:util:1.6.10.0") ``` diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1986e5a..d0d550a 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -10,9 +10,9 @@ android-minSdk = "26" android-targetSdk = "33" barcodeScanning = "17.2.0" cameraX = "1.3.0" -compose = "1.6.10-rc03" +compose = "1.6.10" # @keep -compose-extensions = "1.6.10-rc03.0" +compose-extensions = "1.6.10.0" gradle-versions = "0.51.0" # @pin kotlin = "2.0.0-RC2"