Skip to content

Commit 5f79d65

Browse files
committed
Bump version to 1.0.0-ALPHA-21
1 parent d53d061 commit 5f79d65

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

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-20'
3+
s.version = '1.0.0-ALPHA-21'
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-20'
3+
s.version = '1.0.0-ALPHA-21'
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-20'
3+
s.version = '1.0.0-ALPHA-21'
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
@@ -37,7 +37,7 @@ kotlin {
3737
}
3838
commonMain {
3939
dependencies {
40-
api("com.rickclephas.kmm:kmm-viewmodel-core:1.0.0-ALPHA-20")
40+
api("com.rickclephas.kmm:kmm-viewmodel-core:1.0.0-ALPHA-21")
4141
}
4242
}
4343
}
@@ -147,7 +147,7 @@ class TimeTravelFragment: Fragment(R.layout.fragment_time_travel) {
147147
Add the Swift package to your `Package.swift` file:
148148
```swift
149149
dependencies: [
150-
.package(url: "https://github.com/rickclephas/KMM-ViewModel.git", from: "1.0.0-ALPHA-20")
150+
.package(url: "https://github.com/rickclephas/KMM-ViewModel.git", from: "1.0.0-ALPHA-21")
151151
]
152152
```
153153

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

160160
If you like you can also use CocoaPods instead of SPM:
161161
```ruby
162-
pod 'KMMViewModelSwiftUI', '1.0.0-ALPHA-20'
162+
pod 'KMMViewModelSwiftUI', '1.0.0-ALPHA-21'
163163
```
164164
</p>
165165
</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-20"
22+
version = "1.0.0-ALPHA-21"
2323

2424
repositories {
2525
mavenCentral()

0 commit comments

Comments
 (0)