Skip to content

Commit 5122024

Browse files
committed
Bump version to 1.0.0-ALPHA-15
1 parent 7236844 commit 5122024

File tree

5 files changed

+7
-7
lines changed

5 files changed

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

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ kotlin {
3131
}
3232
commonMain {
3333
dependencies {
34-
api("com.rickclephas.kmm:kmm-viewmodel-core:1.0.0-ALPHA-14")
34+
api("com.rickclephas.kmm:kmm-viewmodel-core:1.0.0-ALPHA-15")
3535
}
3636
}
3737
}
@@ -141,7 +141,7 @@ class TimeTravelFragment: Fragment(R.layout.fragment_time_travel) {
141141
Add the Swift package to your `Package.swift` file:
142142
```swift
143143
dependencies: [
144-
.package(url: "https://github.com/rickclephas/KMM-ViewModel.git", from: "1.0.0-ALPHA-14")
144+
.package(url: "https://github.com/rickclephas/KMM-ViewModel.git", from: "1.0.0-ALPHA-15")
145145
]
146146
```
147147

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

154154
If you like you can also use CocoaPods instead of SPM:
155155
```ruby
156-
pod 'KMMViewModelSwiftUI', '1.0.0-ALPHA-14'
156+
pod 'KMMViewModelSwiftUI', '1.0.0-ALPHA-15'
157157
```
158158
</p>
159159
</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-14-kotlin-1.9.20-RC2"
18+
version = "1.0.0-ALPHA-15"
1919

2020
repositories {
2121
mavenCentral()

0 commit comments

Comments
 (0)