Skip to content

Commit 32be3e9

Browse files
committed
Bump version to 1.0.0-BETA-5
1 parent b7ee990 commit 32be3e9

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-4'
3+
s.version = '1.0.0-BETA-5'
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-4'
3+
s.version = '1.0.0-BETA-5'
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-4'
3+
s.version = '1.0.0-BETA-5'
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,13 +21,13 @@ 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.10`.
24+
The latest version of the library uses Kotlin version `2.0.20`.
2525
Compatibility versions for older and/or preview Kotlin versions are also available:
2626

2727
| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
2828
|--------------|--------------------|:----------:|:----------:|:------------------:|
29-
| _latest_ | -kotlin-2.0.20-RC2 | 2.0.20-RC2 | 1.9.0-RC.2 | 2.8.4 |
30-
| **_latest_** | **_no suffix_** | **2.0.10** | **1.8.1** | **2.8.4** |
29+
| **_latest_** | **_no suffix_** | **2.0.20** | **1.8.1** | **2.8.4** |
30+
| 1.0.0-BETA-4 | _no suffix_ | 2.0.10 | 1.8.1 | 2.8.4 |
3131
| 1.0.0-BETA-3 | _no suffix_ | 2.0.0 | 1.8.1 | 2.8.0 |
3232
| 1.0.0-BETA-2 | _no suffix_ | 1.9.24 | 1.8.1 | 2.8.0 |
3333

@@ -42,7 +42,7 @@ kotlin {
4242
}
4343
commonMain {
4444
dependencies {
45-
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-4")
45+
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-5")
4646
}
4747
}
4848
}
@@ -149,7 +149,7 @@ After you have configured your `shared` Kotlin module and created a ViewModel it
149149
Start by adding the Swift package to your `Package.swift` file:
150150
```swift
151151
dependencies: [
152-
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-4")
152+
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-5")
153153
]
154154
```
155155

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

162162
If you like you can also use CocoaPods instead of SPM:
163163
```ruby
164-
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-4'
164+
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-5'
165165
```
166166
</p>
167167
</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-4-kotlin-2.0.20-RC2"
24+
version = "1.0.0-BETA-5"
2525

2626
repositories {
2727
mavenCentral()

0 commit comments

Comments
 (0)