Skip to content

Commit 2096bb8

Browse files
committed
Bump version to 1.0.0-BETA-6
1 parent 5311fb9 commit 2096bb8

5 files changed

+9
-8
lines changed

KMPObservableViewModelCore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'KMPObservableViewModelCore'
3-
s.version = '1.0.0-BETA-5'
3+
s.version = '1.0.0-BETA-6'
44
s.summary = 'Library to share Kotlin ViewModels with Swift'
55

66
s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'

KMPObservableViewModelCoreObjC.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'KMPObservableViewModelCoreObjC'
3-
s.version = '1.0.0-BETA-5'
3+
s.version = '1.0.0-BETA-6'
44
s.summary = 'Library to share Kotlin ViewModels with Swift'
55

66
s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'

KMPObservableViewModelSwiftUI.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'KMPObservableViewModelSwiftUI'
3-
s.version = '1.0.0-BETA-5'
3+
s.version = '1.0.0-BETA-6'
44
s.summary = 'Library to share Kotlin ViewModels with SwiftUI'
55

66
s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ Compatibility versions for older and/or preview Kotlin versions are also availab
2626

2727
| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
2828
|--------------|--------------------|:----------:|:----------:|:------------------:|
29-
| **_latest_** | **_no suffix_** | **2.0.20** | **1.8.1** | **2.8.4** |
29+
| **_latest_** | **_no suffix_** | **2.0.20** | **1.9.0** | **2.8.4** |
30+
| 1.0.0-BETA-5 | _no suffix_ | 2.0.20 | 1.8.1 | 2.8.4 |
3031
| 1.0.0-BETA-4 | _no suffix_ | 2.0.10 | 1.8.1 | 2.8.4 |
3132
| 1.0.0-BETA-3 | _no suffix_ | 2.0.0 | 1.8.1 | 2.8.0 |
3233
| 1.0.0-BETA-2 | _no suffix_ | 1.9.24 | 1.8.1 | 2.8.0 |
@@ -42,7 +43,7 @@ kotlin {
4243
}
4344
commonMain {
4445
dependencies {
45-
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-5")
46+
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-6")
4647
}
4748
}
4849
}
@@ -149,7 +150,7 @@ After you have configured your `shared` Kotlin module and created a ViewModel it
149150
Start by adding the Swift package to your `Package.swift` file:
150151
```swift
151152
dependencies: [
152-
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-5")
153+
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-6")
153154
]
154155
```
155156

@@ -161,7 +162,7 @@ Or add it in Xcode by going to `File` > `Add Packages...` and providing the URL:
161162

162163
If you like you can also use CocoaPods instead of SPM:
163164
```ruby
164-
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-5'
165+
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-6'
165166
```
166167
</p>
167168
</details>

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ buildscript {
2121

2222
allprojects {
2323
group = "com.rickclephas.kmp"
24-
version = "1.0.0-BETA-5"
24+
version = "1.0.0-BETA-6"
2525

2626
repositories {
2727
mavenCentral()

0 commit comments

Comments
 (0)