Skip to content

Commit b88e4fa

Browse files
committed
Bump version to 1.0.2
1 parent ca0bd50 commit b88e4fa

File tree

5 files changed

+21
-20
lines changed

5 files changed

+21
-20
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.1'
3+
s.version = '1.0.2'
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.1'
3+
s.version = '1.0.2'
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.1'
3+
s.version = '1.0.2'
44
s.summary = 'Library to share Kotlin ViewModels with SwiftUI'
55

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

README.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,22 @@ 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.0`.
24+
The latest version of the library uses Kotlin version `2.3.10`.
2525
Compatibility versions for older and/or preview Kotlin versions are also available:
2626

27-
| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
28-
|---------------|---------------------|:---------:|:----------:|:------------------:|
29-
| **_latest_** | **_no suffix_** | **2.3.0** | **1.10.1** | **2.8.7** |
30-
| 1.0.0 | _no suffix_ | 2.2.21 | 1.10.1 | 2.8.7 |
31-
| 1.0.0-BETA-13 | _no suffix_ | 2.2.10 | 1.10.1 | 2.8.7 |
32-
| 1.0.0-BETA-12 | _no suffix_ | 2.2.0 | 1.10.1 | 2.8.7 |
33-
| 1.0.0-BETA-11 | _no suffix_ | 2.1.21 | 1.10.1 | 2.8.7 |
34-
| 1.0.0-BETA-9 | _no suffix_ | 2.1.10 | 1.10.1 | 2.8.7 |
35-
| 1.0.0-BETA-8 | _no suffix_ | 2.1.0 | 1.9.0 | 2.8.4 |
36-
| 1.0.0-BETA-7 | _no suffix_ | 2.0.21 | 1.9.0 | 2.8.4 |
37-
| 1.0.0-BETA-4 | _no suffix_ | 2.0.10 | 1.8.1 | 2.8.4 |
38-
| 1.0.0-BETA-3 | _no suffix_ | 2.0.0 | 1.8.1 | 2.8.0 |
27+
| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
28+
|---------------|-----------------|:----------:|:----------:|:------------------:|
29+
| **_latest_** | **_no suffix_** | **2.3.10** | **1.10.1** | **2.8.7** |
30+
| 1.0.1 | _no suffix_ | 2.3.0 | 1.10.1 | 2.8.7 |
31+
| 1.0.0 | _no suffix_ | 2.2.21 | 1.10.1 | 2.8.7 |
32+
| 1.0.0-BETA-13 | _no suffix_ | 2.2.10 | 1.10.1 | 2.8.7 |
33+
| 1.0.0-BETA-12 | _no suffix_ | 2.2.0 | 1.10.1 | 2.8.7 |
34+
| 1.0.0-BETA-11 | _no suffix_ | 2.1.21 | 1.10.1 | 2.8.7 |
35+
| 1.0.0-BETA-9 | _no suffix_ | 2.1.10 | 1.10.1 | 2.8.7 |
36+
| 1.0.0-BETA-8 | _no suffix_ | 2.1.0 | 1.9.0 | 2.8.4 |
37+
| 1.0.0-BETA-7 | _no suffix_ | 2.0.21 | 1.9.0 | 2.8.4 |
38+
| 1.0.0-BETA-4 | _no suffix_ | 2.0.10 | 1.8.1 | 2.8.4 |
39+
| 1.0.0-BETA-3 | _no suffix_ | 2.0.0 | 1.8.1 | 2.8.0 |
3940

4041
## Kotlin
4142

@@ -48,7 +49,7 @@ kotlin {
4849
}
4950
commonMain {
5051
dependencies {
51-
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.1")
52+
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.2")
5253
}
5354
}
5455
}
@@ -155,7 +156,7 @@ After you have configured your `shared` Kotlin module and created a ViewModel it
155156
Start by adding the Swift package to your `Package.swift` file:
156157
```swift
157158
dependencies: [
158-
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.1")
159+
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.2")
159160
]
160161
```
161162

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

168169
If you like you can also use CocoaPods instead of SPM:
169170
```ruby
170-
pod 'KMPObservableViewModelSwiftUI', '1.0.1'
171+
pod 'KMPObservableViewModelSwiftUI', '1.0.2'
171172
```
172173
</p>
173174
</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.1-kotlin-2.3.10-RC"
11+
version = "1.0.2"
1212
}

0 commit comments

Comments
 (0)