Skip to content

Commit d280cbf

Browse files
committed
Bump version to 1.0.0-ALPHA-17
1 parent 9f6f572 commit d280cbf

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
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-16'
3+
s.version = '1.0.0-ALPHA-17'
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-16'
3+
s.version = '1.0.0-ALPHA-17'
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-16'
3+
s.version = '1.0.0-ALPHA-17'
44
s.summary = 'Library to share Kotlin ViewModels with SwiftUI'
55

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

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ A library that allows you to share ViewModels between Android and iOS.
44

55
## Compatibility
66

7-
The latest version of the library uses Kotlin version `1.9.21`.
7+
The latest version of the library uses Kotlin version `1.9.22`.
88
Compatibility versions for older and/or preview Kotlin versions are also available:
99

1010
| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
1111
|----------------|---------------------|:-----------:|:----------:|:------------------:|
1212
| _latest_ | -kotlin-2.0.0-Beta1 | 2.0.0-Beta1 | 1.7.3 | 2.6.2 |
13-
| **_latest_** | **_no suffix_** | **1.9.21** | **1.7.3** | **2.6.2** |
13+
| **_latest_** | **_no suffix_** | **1.9.22** | **1.7.3** | **2.6.2** |
14+
| 1.0.0-ALPHA-16 | _no suffix_ | 1.9.21 | 1.7.3 | 2.6.2 |
1415
| 1.0.0-ALPHA-15 | _no suffix_ | 1.9.20 | 1.7.3 | 2.6.2 |
1516
| 1.0.0-ALPHA-14 | _no suffix_ | 1.9.10 | 1.7.3 | 2.6.1 |
1617
| 1.0.0-ALPHA-13 | _no suffix_ | 1.9.0 | 1.7.3 | 2.6.1 |
@@ -33,7 +34,7 @@ kotlin {
3334
}
3435
commonMain {
3536
dependencies {
36-
api("com.rickclephas.kmm:kmm-viewmodel-core:1.0.0-ALPHA-16")
37+
api("com.rickclephas.kmm:kmm-viewmodel-core:1.0.0-ALPHA-17")
3738
}
3839
}
3940
}
@@ -143,7 +144,7 @@ class TimeTravelFragment: Fragment(R.layout.fragment_time_travel) {
143144
Add the Swift package to your `Package.swift` file:
144145
```swift
145146
dependencies: [
146-
.package(url: "https://github.com/rickclephas/KMM-ViewModel.git", from: "1.0.0-ALPHA-16")
147+
.package(url: "https://github.com/rickclephas/KMM-ViewModel.git", from: "1.0.0-ALPHA-17")
147148
]
148149
```
149150

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

156157
If you like you can also use CocoaPods instead of SPM:
157158
```ruby
158-
pod 'KMMViewModelSwiftUI', '1.0.0-ALPHA-16'
159+
pod 'KMMViewModelSwiftUI', '1.0.0-ALPHA-17'
159160
```
160161
</p>
161162
</details>

build.gradle.kts

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

1616
allprojects {
1717
group = "com.rickclephas.kmm"
18-
version = "1.0.0-ALPHA-16"
18+
version = "1.0.0-ALPHA-17"
1919

2020
repositories {
2121
mavenCentral()

0 commit comments

Comments
 (0)