@@ -23,13 +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.20 ` .
26
+ The latest version of the library uses Kotlin version ` 2.0.21 ` .
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.1.0-Beta1 | 2.1.0-Beta1 | 1.0.25 | 1.9.0 |
32
- | ** _ latest_ ** | ** _ no suffix_ ** | ** 2.0.20** | ** 1.0.25** | ** 1.9.0** |
32
+ | ** _ latest_ ** | ** _ no suffix_ ** | ** 2.0.21** | ** 1.0.25** | ** 1.9.0** |
33
+ | 1.0.0-ALPHA-36 | _ no suffix_ | 2.0.20 | 1.0.25 | 1.9.0 |
33
34
| 1.0.0-ALPHA-35 | _ no suffix_ | 2.0.20 | 1.0.24 | 1.8.1 |
34
35
| 1.0.0-ALPHA-34 | _ no suffix_ | 2.0.10 | 1.0.24 | 1.8.1 |
35
36
| 1.0.0-ALPHA-33 | _ no suffix_ | 2.0.0 | 1.0.24 | 1.8.1 |
@@ -66,8 +67,8 @@ Make sure to always use the same versions for all the libraries!
66
67
For Kotlin just add the plugin to your ` build.gradle.kts ` :
67
68
``` kotlin
68
69
plugins {
69
- id(" com.google.devtools.ksp" ) version " 2.0.20 -1.0.25"
70
- id(" com.rickclephas.kmp.nativecoroutines" ) version " 1.0.0-ALPHA-36 "
70
+ id(" com.google.devtools.ksp" ) version " 2.0.21 -1.0.25"
71
+ id(" com.rickclephas.kmp.nativecoroutines" ) version " 1.0.0-ALPHA-37 "
71
72
}
72
73
```
73
74
and make sure to opt in to the experimental ` @ObjCName ` annotation:
@@ -83,7 +84,7 @@ The Swift implementations are available via the Swift Package Manager.
83
84
Just add it to your ` Package.swift ` file:
84
85
``` swift
85
86
dependencies: [
86
- .package (url : " https://github.com/rickclephas/KMP-NativeCoroutines.git" , exact : " 1.0.0-ALPHA-36 " )
87
+ .package (url : " https://github.com/rickclephas/KMP-NativeCoroutines.git" , exact : " 1.0.0-ALPHA-37 " )
87
88
],
88
89
targets: [
89
90
.target (
@@ -115,9 +116,9 @@ Or add it in Xcode by going to `File` > `Add Packages...` and providing the URL:
115
116
116
117
If you use CocoaPods add one or more of the following libraries to your ` Podfile ` :
117
118
``` ruby
118
- pod ' KMPNativeCoroutinesAsync' , ' 1.0.0-ALPHA-36 ' # Swift Concurrency implementation
119
- pod ' KMPNativeCoroutinesCombine' , ' 1.0.0-ALPHA-36 ' # Combine implementation
120
- pod ' KMPNativeCoroutinesRxSwift' , ' 1.0.0-ALPHA-36 ' # RxSwift implementation
119
+ pod ' KMPNativeCoroutinesAsync' , ' 1.0.0-ALPHA-37 ' # Swift Concurrency implementation
120
+ pod ' KMPNativeCoroutinesCombine' , ' 1.0.0-ALPHA-37 ' # Combine implementation
121
+ pod ' KMPNativeCoroutinesRxSwift' , ' 1.0.0-ALPHA-37 ' # RxSwift implementation
121
122
```
122
123
> [ !NOTE]
123
124
> The version for CocoaPods should not contain the Kotlin version suffix (e.g. ` -new-mm ` or ` -kotlin-1.6.0 ` ).
0 commit comments