Skip to content

Commit f5e849c

Browse files
committed
Bump version to 1.0.0-BETA-1
1 parent 0747133 commit f5e849c

File tree

5 files changed

+7
-7
lines changed

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-ALPHA-21'
3+
s.version = '1.0.0-BETA-1'
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-ALPHA-21'
3+
s.version = '1.0.0-BETA-1'
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-ALPHA-21'
3+
s.version = '1.0.0-BETA-1'
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
@@ -40,7 +40,7 @@ kotlin {
4040
}
4141
commonMain {
4242
dependencies {
43-
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-ALPHA-21")
43+
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-1")
4444
}
4545
}
4646
}
@@ -146,7 +146,7 @@ class TimeTravelFragment: Fragment(R.layout.fragment_time_travel) {
146146
Add the Swift package to your `Package.swift` file:
147147
```swift
148148
dependencies: [
149-
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-ALPHA-21")
149+
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-1")
150150
]
151151
```
152152

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

159159
If you like you can also use CocoaPods instead of SPM:
160160
```ruby
161-
pod 'KMPObservableViewModelSwiftUI', '1.0.0-ALPHA-21'
161+
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-1'
162162
```
163163
</p>
164164
</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-ALPHA-21"
24+
version = "1.0.0-BETA-1"
2525

2626
repositories {
2727
mavenCentral()

0 commit comments

Comments
 (0)