Skip to content

Commit efefc9f

Browse files
committed
Bump version to 1.0.4
1 parent fd339f2 commit efefc9f

5 files changed

Lines changed: 10 additions & 9 deletions

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.3'
3+
s.version = '1.0.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.3'
3+
s.version = '1.0.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.3'
3+
s.version = '1.0.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: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +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.3.20`.
24+
The latest version of the library uses Kotlin version `2.3.21`.
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_** | **_no suffix_** | **2.3.20** | **1.10.1** | **2.8.7** |
29+
| **_latest_** | **_no suffix_** | **2.3.21** | **1.10.1** | **2.8.7** |
30+
| 1.0.3 | _no suffix_ | 2.3.20 | 1.10.1 | 2.8.7 |
3031
| 1.0.2 | _no suffix_ | 2.3.10 | 1.10.1 | 2.8.7 |
3132
| 1.0.1 | _no suffix_ | 2.3.0 | 1.10.1 | 2.8.7 |
3233
| 1.0.0 | _no suffix_ | 2.2.21 | 1.10.1 | 2.8.7 |
@@ -50,7 +51,7 @@ kotlin {
5051
}
5152
commonMain {
5253
dependencies {
53-
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.3")
54+
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.4")
5455
}
5556
}
5657
}
@@ -157,7 +158,7 @@ After you have configured your `shared` Kotlin module and created a ViewModel it
157158
Start by adding the Swift package to your `Package.swift` file:
158159
```swift
159160
dependencies: [
160-
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.3")
161+
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.4")
161162
]
162163
```
163164

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

170171
If you like you can also use CocoaPods instead of SPM:
171172
```ruby
172-
pod 'KMPObservableViewModelSwiftUI', git: 'https://github.com/rickclephas/KMP-ObservableViewModel.git', tag: 'v1.0.3'
173+
pod 'KMPObservableViewModelSwiftUI', git: 'https://github.com/rickclephas/KMP-ObservableViewModel.git', tag: 'v1.0.4'
173174
```
174175
</p>
175176
</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.3-kotlin-2.3.21-RC"
11+
version = "1.0.4"
1212
}

0 commit comments

Comments
 (0)