Skip to content

Commit efaf34e

Browse files
committed
Bump version to 1.0.0-ALPHA-19
1 parent 7213f6a commit efaf34e

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

KMMViewModelCore.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 = 'KMMViewModelCore'
3-
s.version = '1.0.0-ALPHA-18'
3+
s.version = '1.0.0-ALPHA-19'
44
s.summary = 'Library to share Kotlin ViewModels with Swift'
55

66
s.homepage = 'https://github.com/rickclephas/KMM-ViewModel'

KMMViewModelCoreObjC.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 = 'KMMViewModelCoreObjC'
3-
s.version = '1.0.0-ALPHA-18'
3+
s.version = '1.0.0-ALPHA-19'
44
s.summary = 'Library to share Kotlin ViewModels with Swift'
55

66
s.homepage = 'https://github.com/rickclephas/KMM-ViewModel'

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

66
s.homepage = 'https://github.com/rickclephas/KMM-ViewModel'

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ Compatibility versions for older and/or preview Kotlin versions are also availab
1010
| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
1111
|----------------|---------------------|:-----------:|:----------:|:------------------:|
1212
| _latest_ | -kotlin-2.0.0-Beta3 | 2.0.0-Beta3 | 1.8.0-RC2 | 2.6.2 |
13-
| **_latest_** | **_no suffix_** | **1.9.22** | **1.7.3** | **2.6.2** |
13+
| **_latest_** | **_no suffix_** | **1.9.22** | **1.8.0** | **2.7.0** |
14+
| 1.0.0-ALPHA-18 | _no suffix_ | 1.9.22 | 1.7.3 | 2.6.2 |
1415
| 1.0.0-ALPHA-16 | _no suffix_ | 1.9.21 | 1.7.3 | 2.6.2 |
1516
| 1.0.0-ALPHA-15 | _no suffix_ | 1.9.20 | 1.7.3 | 2.6.2 |
1617
| 1.0.0-ALPHA-14 | _no suffix_ | 1.9.10 | 1.7.3 | 2.6.1 |
@@ -34,7 +35,7 @@ kotlin {
3435
}
3536
commonMain {
3637
dependencies {
37-
api("com.rickclephas.kmm:kmm-viewmodel-core:1.0.0-ALPHA-18")
38+
api("com.rickclephas.kmm:kmm-viewmodel-core:1.0.0-ALPHA-19")
3839
}
3940
}
4041
}
@@ -144,7 +145,7 @@ class TimeTravelFragment: Fragment(R.layout.fragment_time_travel) {
144145
Add the Swift package to your `Package.swift` file:
145146
```swift
146147
dependencies: [
147-
.package(url: "https://github.com/rickclephas/KMM-ViewModel.git", from: "1.0.0-ALPHA-18")
148+
.package(url: "https://github.com/rickclephas/KMM-ViewModel.git", from: "1.0.0-ALPHA-19")
148149
]
149150
```
150151

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

157158
If you like you can also use CocoaPods instead of SPM:
158159
```ruby
159-
pod 'KMMViewModelSwiftUI', '1.0.0-ALPHA-18'
160+
pod 'KMMViewModelSwiftUI', '1.0.0-ALPHA-19'
160161
```
161162
</p>
162163
</details>

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919

2020
allprojects {
2121
group = "com.rickclephas.kmm"
22-
version = "1.0.0-ALPHA-18"
22+
version = "1.0.0-ALPHA-19"
2323

2424
repositories {
2525
mavenCentral()

0 commit comments

Comments
 (0)