Skip to content

Commit 2fc6847

Browse files
committed
update versions
1 parent fad7c39 commit 2fc6847

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![Platforms](https://img.shields.io/badge/desktop-Windows%20%7C%20macOS%20%7C%20Linux-blue)](https://github.com/avan1235/compose-extensions/releases)
33

44
[![Kotlin](https://img.shields.io/badge/Kotlin-2.0.0-RC2-green.svg?logo=kotlin)](https://github.com/JetBrains/kotlin)
5-
[![Compose](https://img.shields.io/badge/Compose%20Multiplatform-1.6.10-rc03-green.svg?logo=jetpack-compose)](https://github.com/JetBrains/compose-multiplatform)
5+
[![Compose](https://img.shields.io/badge/Compose%20Multiplatform-1.6.10-green.svg?logo=jetpack-compose)](https://github.com/JetBrains/compose-multiplatform)
66
[![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)
77
[![Latest Release](https://img.shields.io/github/v/release/avan1235/compose-extensions?label=Release&color=green)](https://github.com/avan1235/compose-extensions/releases)
88
[![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
2121
Select the extension that you find useful in your project and put
2222

2323
```kotlin
24-
implementation("in.procyk.compose:extension-name:1.6.10-rc03.0")
24+
implementation("in.procyk.compose:extension-name:1.6.10.0")
2525
```
2626

2727
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
3333

3434
- `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).
3535
```kotlin
36-
implementation("in.procyk.compose:calendar:1.6.10-rc03.0")
36+
implementation("in.procyk.compose:calendar:1.6.10.0")
3737
```
3838

3939
- `camera-qr` - detecting QR codes camera view. See sample usage [here](./examples/src/commonMain/kotlin/in/procyk/compose/examples/CameraQR.kt).
4040
```kotlin
41-
implementation("in.procyk.compose:camera-qr:1.6.10-rc03.0")
41+
implementation("in.procyk.compose:camera-qr:1.6.10.0")
4242
```
4343
- for Android Application add to [AndroidManifest.xml](./examples/src/androidMain/AndroidManifest.xml)
4444
```xml
@@ -69,10 +69,10 @@ See some example in [examples](./examples) project, where every extension is add
6969

7070
- `camera-permission` - ask for camera permission. See sample usage [here](./examples/src/commonMain/kotlin/in/procyk/compose/examples/CameraPermission.kt).
7171
```kotlin
72-
implementation("in.procyk.compose:camera-permission:1.6.10-rc03.0")
72+
implementation("in.procyk.compose:camera-permission:1.6.10.0")
7373
```
7474

7575
- `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.
7676
```kotlin
77-
implementation("in.procyk.compose:util:1.6.10-rc03.0")
77+
implementation("in.procyk.compose:util:1.6.10.0")
7878
```

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ android-minSdk = "26"
1010
android-targetSdk = "33"
1111
barcodeScanning = "17.2.0"
1212
cameraX = "1.3.0"
13-
compose = "1.6.10-rc03"
13+
compose = "1.6.10"
1414
# @keep
15-
compose-extensions = "1.6.10-rc03.0"
15+
compose-extensions = "1.6.10.0"
1616
gradle-versions = "0.51.0"
1717
# @pin
18-
kotlin = "2.0.0-RC2"
18+
kotlin = "2.0.0-RC3"
1919
kotlinxDatetime = "0.6.0-RC.2"
2020
version-catalog-update = "0.8.4"
2121
webcamCapture = "0.3.12"

0 commit comments

Comments
 (0)