Skip to content

Commit

Permalink
Bump version to 1.0.0-BETA-7
Browse files Browse the repository at this point in the history
  • Loading branch information
rickclephas committed Oct 19, 2024
1 parent a6fc348 commit 805c41f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 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-6'
s.version = '1.0.0-BETA-7'
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-6'
s.version = '1.0.0-BETA-7'
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-6'
s.version = '1.0.0-BETA-7'
s.summary = 'Library to share Kotlin ViewModels with SwiftUI'

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

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

| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
|--------------|---------------------|:-----------:|:----------:|:------------------:|
| _latest_ | -kotlin-2.1.0-Beta1 | 2.1.0-Beta1 | 1.9.0 | 2.8.4 |
| **_latest_** | **_no suffix_** | **2.0.20** | **1.9.0** | **2.8.4** |
| 1.0.0-BETA-5 | _no suffix_ | 2.0.20 | 1.8.1 | 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 |
Expand All @@ -44,7 +44,7 @@ kotlin {
}
commonMain {
dependencies {
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-6")
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-7")
}
}
}
Expand Down Expand Up @@ -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-6")
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-7")
]
```

Expand All @@ -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-6'
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-7'
```
</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 @@ -17,7 +17,7 @@ buildscript {

allprojects {
group = "com.rickclephas.kmp"
version = "1.0.0-BETA-6"
version = "1.0.0-BETA-7"

repositories {
mavenCentral()
Expand Down

0 comments on commit 805c41f

Please sign in to comment.