Skip to content

Commit 14d5b2e

Browse files
committed
Bump version to 1.0.0-ALPHA-37
1 parent 3fdf7e1 commit 14d5b2e

6 files changed

+14
-13
lines changed

KMPNativeCoroutinesAsync.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'KMPNativeCoroutinesAsync'
3-
s.version = '1.0.0-ALPHA-36'
3+
s.version = '1.0.0-ALPHA-37'
44
s.summary = 'Swift library for Kotlin Coroutines with Swift Async/Await'
55

66
s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines'

KMPNativeCoroutinesCombine.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'KMPNativeCoroutinesCombine'
3-
s.version = '1.0.0-ALPHA-36'
3+
s.version = '1.0.0-ALPHA-37'
44
s.summary = 'Swift library for Kotlin Coroutines with Combine'
55

66
s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines'

KMPNativeCoroutinesCore.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'KMPNativeCoroutinesCore'
3-
s.version = '1.0.0-ALPHA-36'
3+
s.version = '1.0.0-ALPHA-37'
44
s.summary = 'Swift library for Kotlin Coroutines'
55

66
s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines'

KMPNativeCoroutinesRxSwift.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'KMPNativeCoroutinesRxSwift'
3-
s.version = '1.0.0-ALPHA-36'
3+
s.version = '1.0.0-ALPHA-37'
44
s.summary = 'Swift library for Kotlin Coroutines with RxSwift'
55

66
s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines'

README.md

+9-8
Original file line numberDiff line numberDiff line change
@@ -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.0.20`.
26+
The latest version of the library uses Kotlin version `2.0.21`.
2727
Compatibility 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.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 |
3334
| 1.0.0-ALPHA-35 | _no suffix_ | 2.0.20 | 1.0.24 | 1.8.1 |
3435
| 1.0.0-ALPHA-34 | _no suffix_ | 2.0.10 | 1.0.24 | 1.8.1 |
3536
| 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!
6667
For Kotlin just add the plugin to your `build.gradle.kts`:
6768
```kotlin
6869
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"
7172
}
7273
```
7374
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.
8384
Just add it to your `Package.swift` file:
8485
```swift
8586
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")
8788
],
8889
targets: [
8990
.target(
@@ -115,9 +116,9 @@ Or add it in Xcode by going to `File` > `Add Packages...` and providing the URL:
115116

116117
If you use CocoaPods add one or more of the following libraries to your `Podfile`:
117118
```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
121122
```
122123
> [!NOTE]
123124
> The version for CocoaPods should not contain the Kotlin version suffix (e.g. `-new-mm` or `-kotlin-1.6.0`).

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ buildscript {
1818

1919
allprojects {
2020
group = "com.rickclephas.kmp"
21-
version = "1.0.0-ALPHA-36-kotlin-2.0.21-RC"
21+
version = "1.0.0-ALPHA-37"
2222

2323
repositories {
2424
mavenCentral()

0 commit comments

Comments
 (0)