Skip to content

Commit 795e4ca

Browse files
committed
Bump version to 1.0.0-BETA-4
1 parent d759ee9 commit 795e4ca

5 files changed

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

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ kotlin {
4242
}
4343
commonMain {
4444
dependencies {
45-
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-3")
45+
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-4")
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-3")
152+
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-4")
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-3'
164+
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-4'
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-3-kotlin-2.0.10-RC2"
24+
version = "1.0.0-BETA-4"
2525

2626
repositories {
2727
mavenCentral()

0 commit comments

Comments
 (0)