Skip to content

Commit f6f15e9

Browse files
committed
Bump version to 1.0.0
1 parent bc9cf57 commit f6f15e9

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-BETA-15'
3+
s.version = '1.0.0'
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-15'
3+
s.version = '1.0.0'
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-15'
3+
s.version = '1.0.0'
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
@@ -47,7 +47,7 @@ kotlin {
4747
}
4848
commonMain {
4949
dependencies {
50-
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-15")
50+
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0")
5151
}
5252
}
5353
}
@@ -154,7 +154,7 @@ After you have configured your `shared` Kotlin module and created a ViewModel it
154154
Start by adding the Swift package to your `Package.swift` file:
155155
```swift
156156
dependencies: [
157-
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-15")
157+
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0")
158158
]
159159
```
160160

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

167167
If you like you can also use CocoaPods instead of SPM:
168168
```ruby
169-
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-15'
169+
pod 'KMPObservableViewModelSwiftUI', '1.0.0'
170170
```
171171
</p>
172172
</details>

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ buildscript {
88

99
allprojects {
1010
group = "com.rickclephas.kmp"
11-
version = "1.0.0-BETA-15"
11+
version = "1.0.0"
1212
}

0 commit comments

Comments
 (0)