From 873263c0410337632cbda63ed712dffca8d4ae53 Mon Sep 17 00:00:00 2001 From: Rick Clephas Date: Wed, 16 Aug 2023 19:49:03 +0200 Subject: [PATCH] Bump version to 1.0.0-ALPHA-17 --- KMPNativeCoroutinesAsync.podspec | 2 +- KMPNativeCoroutinesCombine.podspec | 2 +- KMPNativeCoroutinesCore.podspec | 2 +- KMPNativeCoroutinesRxSwift.podspec | 2 +- README.md | 10 +++++----- build.gradle.kts | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/KMPNativeCoroutinesAsync.podspec b/KMPNativeCoroutinesAsync.podspec index eb008137..94d0645f 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-16' + s.version = '1.0.0-ALPHA-17' 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 24c01075..92a46ecd 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-16' + s.version = '1.0.0-ALPHA-17' 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 5b562ad0..4001a93d 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-16' + s.version = '1.0.0-ALPHA-17' s.summary = 'Swift library for Kotlin Coroutines' s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines' diff --git a/KMPNativeCoroutinesRxSwift.podspec b/KMPNativeCoroutinesRxSwift.podspec index 44bec602..2092d787 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-16' + s.version = '1.0.0-ALPHA-17' 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 711e7ec2..17c1c8ba 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ For Kotlin just add the plugin to your `build.gradle.kts`: ```kotlin plugins { id("com.google.devtools.ksp") version "1.9.0-1.0.12" - id("com.rickclephas.kmp.nativecoroutines") version "1.0.0-ALPHA-16" + id("com.rickclephas.kmp.nativecoroutines") version "1.0.0-ALPHA-17" } ``` and make sure to opt in to the experimental `@ObjCName` annotation: @@ -77,7 +77,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", from: "1.0.0-ALPHA-16") + .package(url: "https://github.com/rickclephas/KMP-NativeCoroutines.git", from: "1.0.0-ALPHA-17") ] ``` @@ -94,9 +94,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-16' # Swift Concurrency implementation -pod 'KMPNativeCoroutinesCombine', '1.0.0-ALPHA-16' # Combine implementation -pod 'KMPNativeCoroutinesRxSwift', '1.0.0-ALPHA-16' # RxSwift implementation +pod 'KMPNativeCoroutinesAsync', '1.0.0-ALPHA-17' # Swift Concurrency implementation +pod 'KMPNativeCoroutinesCombine', '1.0.0-ALPHA-17' # Combine implementation +pod 'KMPNativeCoroutinesRxSwift', '1.0.0-ALPHA-17' # 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 5ad6df3e..5e357436 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ buildscript { allprojects { group = "com.rickclephas.kmp" - version = "1.0.0-ALPHA-16" + version = "1.0.0-ALPHA-17" repositories { mavenCentral()