Skip to content

Commit a921e96

Browse files
committed
Bump version to 1.0.0-ALPHA-43
1 parent 1f5516b commit a921e96

6 files changed

+14
-14
lines changed

KMPNativeCoroutinesAsync.podspec

Lines changed: 1 addition & 1 deletion
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-42'
3+
s.version = '1.0.0-ALPHA-43'
44
s.summary = 'Swift library for Kotlin Coroutines with Swift Async/Await'
55

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

KMPNativeCoroutinesCombine.podspec

Lines changed: 1 addition & 1 deletion
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-42'
3+
s.version = '1.0.0-ALPHA-43'
44
s.summary = 'Swift library for Kotlin Coroutines with Combine'
55

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

KMPNativeCoroutinesCore.podspec

Lines changed: 1 addition & 1 deletion
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-42'
3+
s.version = '1.0.0-ALPHA-43'
44
s.summary = 'Swift library for Kotlin Coroutines'
55

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

KMPNativeCoroutinesRxSwift.podspec

Lines changed: 1 addition & 1 deletion
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-42'
3+
s.version = '1.0.0-ALPHA-43'
44
s.summary = 'Swift library for Kotlin Coroutines with RxSwift'
55

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

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +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.20`.
26+
The latest version of the library uses Kotlin version `2.1.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.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 |
3434
| 1.0.0-ALPHA-41 | _no suffix_ | 2.1.10 | 1.0.31 | 1.10.1 |
3535
| 1.0.0-ALPHA-40 | _no suffix_ | 2.1.10 | 1.0.31 | 1.10.1 |
3636
| 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!
7272
For Kotlin just add the plugin to your `build.gradle.kts`:
7373
```kotlin
7474
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"
7777
}
7878
```
7979
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.
8989
Just add it to your `Package.swift` file:
9090
```swift
9191
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")
9393
],
9494
targets: [
9595
.target(
@@ -121,9 +121,9 @@ Or add it in Xcode by going to `File` > `Add Packages...` and providing the URL:
121121

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

build.gradle.kts

Lines changed: 1 addition & 1 deletion
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-42-kotlin-2.1.21-RC2"
21+
version = "1.0.0-ALPHA-43"
2222

2323
repositories {
2424
mavenCentral()

0 commit comments

Comments
 (0)