From 073f2e9e72711ad2ba42ede759ae24c9cf0000b5 Mon Sep 17 00:00:00 2001 From: Rick Clephas Date: Mon, 26 Aug 2024 21:38:59 +0200 Subject: [PATCH] Bump version to 1.0.0-ALPHA-35 --- KMPNativeCoroutinesAsync.podspec | 2 +- KMPNativeCoroutinesCombine.podspec | 2 +- KMPNativeCoroutinesCore.podspec | 2 +- KMPNativeCoroutinesRxSwift.podspec | 2 +- README.md | 18 +++++++++--------- build.gradle.kts | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/KMPNativeCoroutinesAsync.podspec b/KMPNativeCoroutinesAsync.podspec index 1250a93c..b1a5791c 100644 --- a/KMPNativeCoroutinesAsync.podspec +++ b/KMPNativeCoroutinesAsync.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'KMPNativeCoroutinesAsync' - s.version = '1.0.0-ALPHA-34' + s.version = '1.0.0-ALPHA-35' s.summary = 'Swift library for Kotlin Coroutines with Swift Async/Await' s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines' diff --git a/KMPNativeCoroutinesCombine.podspec b/KMPNativeCoroutinesCombine.podspec index 81241984..14a05e14 100644 --- a/KMPNativeCoroutinesCombine.podspec +++ b/KMPNativeCoroutinesCombine.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'KMPNativeCoroutinesCombine' - s.version = '1.0.0-ALPHA-34' + s.version = '1.0.0-ALPHA-35' s.summary = 'Swift library for Kotlin Coroutines with Combine' s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines' diff --git a/KMPNativeCoroutinesCore.podspec b/KMPNativeCoroutinesCore.podspec index f0880583..f77eabc1 100644 --- a/KMPNativeCoroutinesCore.podspec +++ b/KMPNativeCoroutinesCore.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'KMPNativeCoroutinesCore' - s.version = '1.0.0-ALPHA-34' + s.version = '1.0.0-ALPHA-35' s.summary = 'Swift library for Kotlin Coroutines' s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines' diff --git a/KMPNativeCoroutinesRxSwift.podspec b/KMPNativeCoroutinesRxSwift.podspec index f95a376b..b146e94f 100644 --- a/KMPNativeCoroutinesRxSwift.podspec +++ b/KMPNativeCoroutinesRxSwift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'KMPNativeCoroutinesRxSwift' - s.version = '1.0.0-ALPHA-34' + s.version = '1.0.0-ALPHA-35' s.summary = 'Swift library for Kotlin Coroutines with RxSwift' s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines' diff --git a/README.md b/README.md index 4a7bab8e..0ed0b25a 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,13 @@ This library solves both of these limitations 😄. ## Compatibility -The latest version of the library uses Kotlin version `2.0.10`. +The latest version of the library uses Kotlin version `2.0.20`. Compatibility versions for older and/or preview Kotlin versions are also available: | Version | Version suffix | Kotlin | KSP | Coroutines | |----------------|--------------------|:----------:|:----------:|:----------:| -| _latest_ | -kotlin-2.0.20-RC2 | 2.0.20-RC2 | 1.0.24 | 1.9.0-RC.2 | -| **_latest_** | **_no suffix_** | **2.0.10** | **1.0.24** | **1.8.1** | +| **_latest_** | **_no suffix_** | **2.0.20** | **1.0.24** | **1.8.1** | +| 1.0.0-ALPHA-34 | _no suffix_ | 2.0.10 | 1.0.24 | 1.8.1 | | 1.0.0-ALPHA-33 | _no suffix_ | 2.0.0 | 1.0.24 | 1.8.1 | | 1.0.0-ALPHA-30 | _no suffix_ | 1.9.24 | 1.0.20 | 1.8.1 | | 1.0.0-ALPHA-28 | _no suffix_ | 1.9.23 | 1.0.20 | 1.8.0 | @@ -64,8 +64,8 @@ Make sure to always use the same versions for all the libraries! For Kotlin just add the plugin to your `build.gradle.kts`: ```kotlin plugins { - id("com.google.devtools.ksp") version "2.0.10-1.0.24" - id("com.rickclephas.kmp.nativecoroutines") version "1.0.0-ALPHA-34" + id("com.google.devtools.ksp") version "2.0.20-1.0.24" + id("com.rickclephas.kmp.nativecoroutines") version "1.0.0-ALPHA-35" } ``` 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. Just add it to your `Package.swift` file: ```swift dependencies: [ - .package(url: "https://github.com/rickclephas/KMP-NativeCoroutines.git", exact: "1.0.0-ALPHA-34") + .package(url: "https://github.com/rickclephas/KMP-NativeCoroutines.git", exact: "1.0.0-ALPHA-35") ], targets: [ .target( @@ -113,9 +113,9 @@ Or add it in Xcode by going to `File` > `Add Packages...` and providing the URL: If you use CocoaPods add one or more of the following libraries to your `Podfile`: ```ruby -pod 'KMPNativeCoroutinesAsync', '1.0.0-ALPHA-34' # Swift Concurrency implementation -pod 'KMPNativeCoroutinesCombine', '1.0.0-ALPHA-34' # Combine implementation -pod 'KMPNativeCoroutinesRxSwift', '1.0.0-ALPHA-34' # RxSwift implementation +pod 'KMPNativeCoroutinesAsync', '1.0.0-ALPHA-35' # Swift Concurrency implementation +pod 'KMPNativeCoroutinesCombine', '1.0.0-ALPHA-35' # Combine implementation +pod 'KMPNativeCoroutinesRxSwift', '1.0.0-ALPHA-35' # RxSwift implementation ``` > [!NOTE] > The version for CocoaPods should not contain the Kotlin version suffix (e.g. `-new-mm` or `-kotlin-1.6.0`). diff --git a/build.gradle.kts b/build.gradle.kts index 42bd8b48..503f07b3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -18,7 +18,7 @@ buildscript { allprojects { group = "com.rickclephas.kmp" - version = "1.0.0-ALPHA-34-kotlin-2.0.20-RC2" + version = "1.0.0-ALPHA-35" repositories { mavenCentral()