diff --git a/README.md b/README.md index 9d9c8b4..f558675 100644 --- a/README.md +++ b/README.md @@ -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.0") +implementation("in.procyk.compose:extension-name:1.6.10.1") ``` 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.0") + implementation("in.procyk.compose:calendar:1.6.10.1") ``` - `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.0") + implementation("in.procyk.compose:camera-qr:1.6.10.1") ``` - 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.0") + implementation("in.procyk.compose:camera-permission:1.6.10.1") ``` - `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.0") + implementation("in.procyk.compose:util:1.6.10.1") ``` diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 91fb0e3..c8c6e00 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -12,10 +12,10 @@ barcodeScanning = "17.2.0" cameraX = "1.3.0" compose = "1.6.10" # @keep -compose-extensions = "1.6.10.0" +compose-extensions = "1.6.10.1" gradle-versions = "0.51.0" # @pin -kotlin = "2.0.0-RC3" +kotlin = "2.0.0" kotlinxDatetime = "0.6.0-RC.2" version-catalog-update = "0.8.4" webcamCapture = "0.3.12"