@@ -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.1.20 ` .
26
+ The latest version of the library uses Kotlin version ` 2.1.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.2.0-Beta1 | 2.2.0-Beta1 | 2.0.0 | 1.10.1 |
32
- | _ latest_ | -kotlin-2.1.21-RC | 2.1.21-RC | 2.0.0 | 1.10.1 |
33
- | ** _ latest _ ** | ** _ no suffix_ ** | ** 2.1.20** | ** 2.0.0** | ** 1.10.1** |
32
+ | ** _ latest_ ** | ** _ no suffix _ ** | ** 2.1.21** | ** 2.0.1 ** | ** 1.10.1** |
33
+ | 1.0.0-ALPHA-42 | _ no suffix_ | 2.1.20 | 2.0.0 | 1.10.1 |
34
34
| 1.0.0-ALPHA-41 | _ no suffix_ | 2.1.10 | 1.0.31 | 1.10.1 |
35
35
| 1.0.0-ALPHA-40 | _ no suffix_ | 2.1.10 | 1.0.31 | 1.10.1 |
36
36
| 1.0.0-ALPHA-38 | _ no suffix_ | 2.1.0 | 1.0.29 | 1.9.0 |
@@ -72,8 +72,8 @@ Make sure to always use the same versions for all the libraries!
72
72
For Kotlin just add the plugin to your ` build.gradle.kts ` :
73
73
``` kotlin
74
74
plugins {
75
- id(" com.google.devtools.ksp" ) version " 2.1.20 -2.0.0 "
76
- id(" com.rickclephas.kmp.nativecoroutines" ) version " 1.0.0-ALPHA-42 "
75
+ id(" com.google.devtools.ksp" ) version " 2.1.21 -2.0.1 "
76
+ id(" com.rickclephas.kmp.nativecoroutines" ) version " 1.0.0-ALPHA-43 "
77
77
}
78
78
```
79
79
and make sure to opt in to the experimental ` @ObjCName ` annotation:
@@ -89,7 +89,7 @@ The Swift implementations are available via the Swift Package Manager.
89
89
Just add it to your ` Package.swift ` file:
90
90
``` swift
91
91
dependencies: [
92
- .package (url : " https://github.com/rickclephas/KMP-NativeCoroutines.git" , exact : " 1.0.0-ALPHA-42 " )
92
+ .package (url : " https://github.com/rickclephas/KMP-NativeCoroutines.git" , exact : " 1.0.0-ALPHA-43 " )
93
93
],
94
94
targets: [
95
95
.target (
@@ -121,9 +121,9 @@ Or add it in Xcode by going to `File` > `Add Packages...` and providing the URL:
121
121
122
122
If you use CocoaPods add one or more of the following libraries to your ` Podfile ` :
123
123
``` ruby
124
- pod ' KMPNativeCoroutinesAsync' , ' 1.0.0-ALPHA-42 ' # Swift Concurrency implementation
125
- pod ' KMPNativeCoroutinesCombine' , ' 1.0.0-ALPHA-42 ' # Combine implementation
126
- pod ' KMPNativeCoroutinesRxSwift' , git: ' https://github.com/rickclephas/KMP-NativeCoroutines.git' , tag: ' v1.0.0-ALPHA-42 ' # RxSwift implementation
124
+ pod ' KMPNativeCoroutinesAsync' , ' 1.0.0-ALPHA-43 ' # Swift Concurrency implementation
125
+ pod ' KMPNativeCoroutinesCombine' , ' 1.0.0-ALPHA-43 ' # Combine implementation
126
+ pod ' KMPNativeCoroutinesRxSwift' , git: ' https://github.com/rickclephas/KMP-NativeCoroutines.git' , tag: ' v1.0.0-ALPHA-43 ' # RxSwift implementation
127
127
```
128
128
> [ !NOTE]
129
129
> The version for CocoaPods should not contain the Kotlin version suffix (e.g. ` -new-mm ` or ` -kotlin-1.6.0 ` ).
0 commit comments