Skip to content

Commit 805c41f

Browse files
committed
Bump version to 1.0.0-BETA-7
1 parent a6fc348 commit 805c41f

5 files changed

+10
-10
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-6'
3+
s.version = '1.0.0-BETA-7'
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-6'
3+
s.version = '1.0.0-BETA-7'
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-6'
3+
s.version = '1.0.0-BETA-7'
44
s.summary = 'Library to share Kotlin ViewModels with SwiftUI'
55

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

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ but not all targets support AndroidX and/or SwiftUI interop:
2121
| JS || - | - |
2222
| Wasm || - | - |
2323

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

2727
| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
2828
|--------------|---------------------|:-----------:|:----------:|:------------------:|
2929
| _latest_ | -kotlin-2.1.0-Beta1 | 2.1.0-Beta1 | 1.9.0 | 2.8.4 |
30-
| **_latest_** | **_no suffix_** | **2.0.20** | **1.9.0** | **2.8.4** |
31-
| 1.0.0-BETA-5 | _no suffix_ | 2.0.20 | 1.8.1 | 2.8.4 |
30+
| **_latest_** | **_no suffix_** | **2.0.21** | **1.9.0** | **2.8.4** |
31+
| 1.0.0-BETA-6 | _no suffix_ | 2.0.20 | 1.9.0 | 2.8.4 |
3232
| 1.0.0-BETA-4 | _no suffix_ | 2.0.10 | 1.8.1 | 2.8.4 |
3333
| 1.0.0-BETA-3 | _no suffix_ | 2.0.0 | 1.8.1 | 2.8.0 |
3434
| 1.0.0-BETA-2 | _no suffix_ | 1.9.24 | 1.8.1 | 2.8.0 |
@@ -44,7 +44,7 @@ kotlin {
4444
}
4545
commonMain {
4646
dependencies {
47-
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-6")
47+
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-7")
4848
}
4949
}
5050
}
@@ -151,7 +151,7 @@ After you have configured your `shared` Kotlin module and created a ViewModel it
151151
Start by adding the Swift package to your `Package.swift` file:
152152
```swift
153153
dependencies: [
154-
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-6")
154+
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-7")
155155
]
156156
```
157157

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

164164
If you like you can also use CocoaPods instead of SPM:
165165
```ruby
166-
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-6'
166+
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-7'
167167
```
168168
</p>
169169
</details>

build.gradle.kts

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

1818
allprojects {
1919
group = "com.rickclephas.kmp"
20-
version = "1.0.0-BETA-6"
20+
version = "1.0.0-BETA-7"
2121

2222
repositories {
2323
mavenCentral()

0 commit comments

Comments
 (0)