Skip to content

Commit

Permalink
Bump version to 1.0.0-BETA-9
Browse files Browse the repository at this point in the history
  • Loading branch information
rickclephas committed Feb 10, 2025
1 parent 2ea0510 commit 196860d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion KMPObservableViewModelCore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KMPObservableViewModelCore'
s.version = '1.0.0-BETA-8'
s.version = '1.0.0-BETA-9'
s.summary = 'Library to share Kotlin ViewModels with Swift'

s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'
Expand Down
2 changes: 1 addition & 1 deletion KMPObservableViewModelCoreObjC.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KMPObservableViewModelCoreObjC'
s.version = '1.0.0-BETA-8'
s.version = '1.0.0-BETA-9'
s.summary = 'Library to share Kotlin ViewModels with Swift'

s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'
Expand Down
2 changes: 1 addition & 1 deletion KMPObservableViewModelSwiftUI.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KMPObservableViewModelSwiftUI'
s.version = '1.0.0-BETA-8'
s.version = '1.0.0-BETA-9'
s.summary = 'Library to share Kotlin ViewModels with SwiftUI'

s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@ but not all targets support AndroidX and/or SwiftUI interop:
| JS || - | - |
| Wasm || - | - |

The latest version of the library uses Kotlin version `2.1.0`.
The latest version of the library uses Kotlin version `2.1.10`.
Compatibility versions for older and/or preview Kotlin versions are also available:

| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
|--------------|----------------------|:------------:|:----------:|:------------------:|
| _latest_ | -kotlin-2.1.20-Beta1 | 2.1.20-Beta1 | 1.10.1 | 2.8.7 |
| **_latest_** | **_no suffix_** | **2.1.0** | **1.9.0** | **2.8.4** |
| **_latest_** | **_no suffix_** | **2.1.10** | **1.10.1** | **2.8.7** |
| 1.0.0-BETA-8 | _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 |
Expand All @@ -45,7 +46,7 @@ kotlin {
}
commonMain {
dependencies {
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-8")
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-9")
}
}
}
Expand Down Expand Up @@ -152,7 +153,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-8")
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-9")
]
```

Expand All @@ -164,7 +165,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-8'
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-9'
```
</p>
</details>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {

allprojects {
group = "com.rickclephas.kmp"
version = "1.0.0-BETA-8-kotlin-2.1.10-RC2"
version = "1.0.0-BETA-9"

repositories {
mavenCentral()
Expand Down

0 comments on commit 196860d

Please sign in to comment.