@@ -23,14 +23,14 @@ This library solves both of these limitations 😄.
23
23
24
24
## Compatibility
25
25
26
- The latest version of the library uses Kotlin version ` 2.0.0 ` .
26
+ The latest version of the library uses Kotlin version ` 2.0.10 ` .
27
27
Compatibility versions for older and/or preview Kotlin versions are also available:
28
28
29
29
| Version | Version suffix | Kotlin | KSP | Coroutines |
30
30
| ----------------| --------------------| :----------:| :----------:| :----------:|
31
31
| _ latest_ | -kotlin-2.0.20-RC | 2.0.20-RC | 1.0.24 | 1.9.0-RC |
32
- | _ latest_ | -kotlin-2.0.10-RC2 | 2.0.10-RC2 | 1.0.24 | 1.9.0-RC |
33
- | ** _ latest _ ** | ** _ no suffix_ ** | ** 2.0.0** | ** 1.0.24** | ** 1.8.1** |
32
+ | ** _ latest_ ** | ** _ no suffix _ ** | ** 2.0.10** | ** 1.0.24** | ** 1.8.1 ** |
33
+ | 1.0.0-ALPHA-33 | _ no suffix_ | 2.0.0 | 1.0.24 | 1.8.1 |
34
34
| 1.0.0-ALPHA-30 | _ no suffix_ | 1.9.24 | 1.0.20 | 1.8.1 |
35
35
| 1.0.0-ALPHA-28 | _ no suffix_ | 1.9.23 | 1.0.20 | 1.8.0 |
36
36
| 1.0.0-ALPHA-25 | _ no suffix_ | 1.9.22 | 1.0.17 | 1.8.0 |
@@ -64,8 +64,8 @@ Make sure to always use the same versions for all the libraries!
64
64
For Kotlin just add the plugin to your ` build.gradle.kts ` :
65
65
``` kotlin
66
66
plugins {
67
- id(" com.google.devtools.ksp" ) version " 2.0.0 -1.0.24"
68
- id(" com.rickclephas.kmp.nativecoroutines" ) version " 1.0.0-ALPHA-33 "
67
+ id(" com.google.devtools.ksp" ) version " 2.0.10 -1.0.24"
68
+ id(" com.rickclephas.kmp.nativecoroutines" ) version " 1.0.0-ALPHA-34 "
69
69
}
70
70
```
71
71
and make sure to opt in to the experimental ` @ObjCName ` annotation:
@@ -81,7 +81,7 @@ The Swift implementations are available via the Swift Package Manager.
81
81
Just add it to your ` Package.swift ` file:
82
82
``` swift
83
83
dependencies: [
84
- .package (url : " https://github.com/rickclephas/KMP-NativeCoroutines.git" , exact : " 1.0.0-ALPHA-33 " )
84
+ .package (url : " https://github.com/rickclephas/KMP-NativeCoroutines.git" , exact : " 1.0.0-ALPHA-34 " )
85
85
],
86
86
targets: [
87
87
.target (
@@ -113,9 +113,9 @@ Or add it in Xcode by going to `File` > `Add Packages...` and providing the URL:
113
113
114
114
If you use CocoaPods add one or more of the following libraries to your ` Podfile ` :
115
115
``` ruby
116
- pod ' KMPNativeCoroutinesAsync' , ' 1.0.0-ALPHA-33 ' # Swift Concurrency implementation
117
- pod ' KMPNativeCoroutinesCombine' , ' 1.0.0-ALPHA-33 ' # Combine implementation
118
- pod ' KMPNativeCoroutinesRxSwift' , ' 1.0.0-ALPHA-33 ' # RxSwift implementation
116
+ pod ' KMPNativeCoroutinesAsync' , ' 1.0.0-ALPHA-34 ' # Swift Concurrency implementation
117
+ pod ' KMPNativeCoroutinesCombine' , ' 1.0.0-ALPHA-34 ' # Combine implementation
118
+ pod ' KMPNativeCoroutinesRxSwift' , ' 1.0.0-ALPHA-34 ' # RxSwift implementation
119
119
```
120
120
> [ !NOTE]
121
121
> The version for CocoaPods should not contain the Kotlin version suffix (e.g. ` -new-mm ` or ` -kotlin-1.6.0 ` ).
0 commit comments