From bb6e5ea0504db706ef52577a66861c015daf2265 Mon Sep 17 00:00:00 2001 From: Rick Clephas Date: Thu, 29 Dec 2022 11:25:44 +0100 Subject: [PATCH] Bump version to 1.0.0-ALPHA-4 --- KMPNativeCoroutinesAsync.podspec | 2 +- KMPNativeCoroutinesCombine.podspec | 2 +- KMPNativeCoroutinesCore.podspec | 2 +- KMPNativeCoroutinesRxSwift.podspec | 2 +- README.md | 13 +++++++------ build.gradle.kts | 2 +- 6 files changed, 12 insertions(+), 11 deletions(-) diff --git a/KMPNativeCoroutinesAsync.podspec b/KMPNativeCoroutinesAsync.podspec index 549d6549..faebb245 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-3' + s.version = '1.0.0-ALPHA-4' 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 1a640535..0a68f863 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-3' + s.version = '1.0.0-ALPHA-4' 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 62227a6e..74a9a52f 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-3' + s.version = '1.0.0-ALPHA-4' s.summary = 'Swift library for Kotlin Coroutines' s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines' diff --git a/KMPNativeCoroutinesRxSwift.podspec b/KMPNativeCoroutinesRxSwift.podspec index 067d8d0d..8eac15c5 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-3' + s.version = '1.0.0-ALPHA-4' 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 9ef9a788..3467e9b5 100644 --- a/README.md +++ b/README.md @@ -27,14 +27,15 @@ This library solves both of these limitations 😄. ## Compatibility -The latest version of the library uses Kotlin version `1.8.0-RC2`. +The latest version of the library uses Kotlin version `1.8.0`. Compatibility versions for older Kotlin versions are also available: -| Version | Version suffix | Kotlin | KSP | Coroutines | -|---------------|-----------------|:-------------:|:---------:|:----------:| -| **_latest_** | **_no suffix_** | **1.8.0-RC2** | **1.0.8** | **1.6.4** | -| 1.0.0-ALPHA-2 | _no suffix_ | 1.8.0-RC | 1.0.8 | 1.6.4 | -| 1.0.0-ALPHA-1 | _no suffix_ | 1.8.0-Beta | 1.0.8 | 1.6.4 | +| Version | Version suffix | Kotlin | KSP | Coroutines | +|---------------|-----------------|:----------:|:---------:|:----------:| +| **_latest_** | **_no suffix_** | **1.8.0** | **1.0.8** | **1.6.4** | +| 1.0.0-ALPHA-3 | _no suffix_ | 1.8.0-RC-2 | 1.0.8 | 1.6.4 | +| 1.0.0-ALPHA-2 | _no suffix_ | 1.8.0-RC | 1.0.8 | 1.6.4 | +| 1.0.0-ALPHA-1 | _no suffix_ | 1.8.0-Beta | 1.0.8 | 1.6.4 | You can choose from a couple of Swift implementations. Depending on the implementation you can support as low as iOS 9, macOS 10.9, tvOS 9 and watchOS 3: diff --git a/build.gradle.kts b/build.gradle.kts index f4f52d38..152700b5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ buildscript { allprojects { group = "com.rickclephas.kmp" - version = "1.0.0-ALPHA-3" + version = "1.0.0-ALPHA-4" repositories { mavenCentral()