From a4df75796f35e06e624fefb856c6dc867575bd6d Mon Sep 17 00:00:00 2001 From: Rick Clephas Date: Sun, 8 Dec 2024 20:29:52 +0100 Subject: [PATCH] Bump version to 1.0.0-BETA-8 --- KMPObservableViewModelCore.podspec | 2 +- KMPObservableViewModelCoreObjC.podspec | 2 +- KMPObservableViewModelSwiftUI.podspec | 2 +- README.md | 24 ++++++++++++------------ build.gradle.kts | 2 +- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/KMPObservableViewModelCore.podspec b/KMPObservableViewModelCore.podspec index ddf5b28..c3101b2 100644 --- a/KMPObservableViewModelCore.podspec +++ b/KMPObservableViewModelCore.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'KMPObservableViewModelCore' - s.version = '1.0.0-BETA-7' + s.version = '1.0.0-BETA-8' s.summary = 'Library to share Kotlin ViewModels with Swift' s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel' diff --git a/KMPObservableViewModelCoreObjC.podspec b/KMPObservableViewModelCoreObjC.podspec index 1bd49f9..308676e 100644 --- a/KMPObservableViewModelCoreObjC.podspec +++ b/KMPObservableViewModelCoreObjC.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'KMPObservableViewModelCoreObjC' - s.version = '1.0.0-BETA-7' + s.version = '1.0.0-BETA-8' s.summary = 'Library to share Kotlin ViewModels with Swift' s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel' diff --git a/KMPObservableViewModelSwiftUI.podspec b/KMPObservableViewModelSwiftUI.podspec index 6ec96d1..62946ac 100644 --- a/KMPObservableViewModelSwiftUI.podspec +++ b/KMPObservableViewModelSwiftUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'KMPObservableViewModelSwiftUI' - s.version = '1.0.0-BETA-7' + s.version = '1.0.0-BETA-8' s.summary = 'Library to share Kotlin ViewModels with SwiftUI' s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel' diff --git a/README.md b/README.md index 5bb55f2..fe923f6 100644 --- a/README.md +++ b/README.md @@ -21,17 +21,17 @@ but not all targets support AndroidX and/or SwiftUI interop: | JS | ✅ | - | - | | Wasm | ✅ | - | - | -The latest version of the library uses Kotlin version `2.0.21`. +The latest version of the library uses Kotlin version `2.1.0`. Compatibility versions for older and/or preview Kotlin versions are also available: -| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle | -|--------------|---------------------|:-----------:|:----------:|:------------------:| -| _latest_ | -kotlin-2.1.0-RC2 | 2.1.0-RC2 | 1.9.0 | 2.8.4 | -| **_latest_** | **_no suffix_** | **2.0.21** | **1.9.0** | **2.8.4** | -| 1.0.0-BETA-6 | _no suffix_ | 2.0.20 | 1.9.0 | 2.8.4 | -| 1.0.0-BETA-4 | _no suffix_ | 2.0.10 | 1.8.1 | 2.8.4 | -| 1.0.0-BETA-3 | _no suffix_ | 2.0.0 | 1.8.1 | 2.8.0 | -| 1.0.0-BETA-2 | _no suffix_ | 1.9.24 | 1.8.1 | 2.8.0 | +| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle | +|--------------|---------------------|:---------:|:----------:|:------------------:| +| **_latest_** | **_no suffix_** | **2.1.0** | **1.9.0** | **2.8.4** | +| 1.0.0-BETA-7 | _no suffix_ | 2.0.21 | 1.9.0 | 2.8.4 | +| 1.0.0-BETA-6 | _no suffix_ | 2.0.20 | 1.9.0 | 2.8.4 | +| 1.0.0-BETA-4 | _no suffix_ | 2.0.10 | 1.8.1 | 2.8.4 | +| 1.0.0-BETA-3 | _no suffix_ | 2.0.0 | 1.8.1 | 2.8.0 | +| 1.0.0-BETA-2 | _no suffix_ | 1.9.24 | 1.8.1 | 2.8.0 | ## Kotlin @@ -44,7 +44,7 @@ kotlin { } commonMain { dependencies { - api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-7") + api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-8") } } } @@ -151,7 +151,7 @@ After you have configured your `shared` Kotlin module and created a ViewModel it Start by adding the Swift package to your `Package.swift` file: ```swift dependencies: [ - .package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-7") + .package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-8") ] ``` @@ -163,7 +163,7 @@ Or add it in Xcode by going to `File` > `Add Packages...` and providing the URL: If you like you can also use CocoaPods instead of SPM: ```ruby -pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-7' +pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-8' ```

diff --git a/build.gradle.kts b/build.gradle.kts index 24b88ad..1006228 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,7 +13,7 @@ buildscript { allprojects { group = "com.rickclephas.kmp" - version = "1.0.0-BETA-7-kotlin-2.1.0-RC2" + version = "1.0.0-BETA-8" repositories { mavenCentral()