@@ -23,13 +23,14 @@ This library solves both of these limitations 😄.
2323
2424## Compatibility
2525
26- The latest version of the library uses Kotlin version ` 2.1.0 ` .
26+ The latest version of the library uses Kotlin version ` 2.1.10 ` .
2727Compatibility versions for older and/or preview Kotlin versions are also available:
2828
2929| Version | Version suffix | Kotlin | KSP | Coroutines |
3030| ----------------| ----------------------| :------------:| :----------:| :----------:|
3131| _ latest_ | -kotlin-2.1.20-Beta1 | 2.1.20-Beta1 | 1.0.29 | 1.10.1 |
32- | ** _ latest_ ** | ** _ no suffix_ ** | ** 2.1.0** | ** 1.0.29** | ** 1.9.0** |
32+ | ** _ latest_ ** | ** _ no suffix_ ** | ** 2.1.10** | ** 1.0.29** | ** 1.10.1** |
33+ | 1.0.0-ALPHA-38 | _ no suffix_ | 2.1.0 | 1.0.29 | 1.9.0 |
3334| 1.0.0-ALPHA-37 | _ no suffix_ | 2.0.21 | 1.0.25 | 1.9.0 |
3435| 1.0.0-ALPHA-36 | _ no suffix_ | 2.0.20 | 1.0.25 | 1.9.0 |
3536| 1.0.0-ALPHA-35 | _ no suffix_ | 2.0.20 | 1.0.24 | 1.8.1 |
@@ -68,8 +69,8 @@ Make sure to always use the same versions for all the libraries!
6869For Kotlin just add the plugin to your ` build.gradle.kts ` :
6970``` kotlin
7071plugins {
71- id(" com.google.devtools.ksp" ) version " 2.1.0 -1.0.29"
72- id(" com.rickclephas.kmp.nativecoroutines" ) version " 1.0.0-ALPHA-38 "
72+ id(" com.google.devtools.ksp" ) version " 2.1.10 -1.0.29"
73+ id(" com.rickclephas.kmp.nativecoroutines" ) version " 1.0.0-ALPHA-39 "
7374}
7475```
7576and make sure to opt in to the experimental ` @ObjCName ` annotation:
@@ -85,7 +86,7 @@ The Swift implementations are available via the Swift Package Manager.
8586Just add it to your ` Package.swift ` file:
8687``` swift
8788dependencies: [
88- .package (url : " https://github.com/rickclephas/KMP-NativeCoroutines.git" , exact : " 1.0.0-ALPHA-38 " )
89+ .package (url : " https://github.com/rickclephas/KMP-NativeCoroutines.git" , exact : " 1.0.0-ALPHA-39 " )
8990],
9091targets: [
9192 .target (
@@ -117,9 +118,9 @@ Or add it in Xcode by going to `File` > `Add Packages...` and providing the URL:
117118
118119If you use CocoaPods add one or more of the following libraries to your ` Podfile ` :
119120``` ruby
120- pod ' KMPNativeCoroutinesAsync' , ' 1.0.0-ALPHA-38 ' # Swift Concurrency implementation
121- pod ' KMPNativeCoroutinesCombine' , ' 1.0.0-ALPHA-38 ' # Combine implementation
122- pod ' KMPNativeCoroutinesRxSwift' , ' 1.0.0-ALPHA-38 ' # RxSwift implementation
121+ pod ' KMPNativeCoroutinesAsync' , ' 1.0.0-ALPHA-39 ' # Swift Concurrency implementation
122+ pod ' KMPNativeCoroutinesCombine' , ' 1.0.0-ALPHA-39 ' # Combine implementation
123+ pod ' KMPNativeCoroutinesRxSwift' , ' 1.0.0-ALPHA-39 ' # RxSwift implementation
123124```
124125> [ !NOTE]
125126> The version for CocoaPods should not contain the Kotlin version suffix (e.g. ` -new-mm ` or ` -kotlin-1.6.0 ` ).
0 commit comments