Skip to content

Commit 657d465

Browse files
committed
Bump version to 1.0.0-ALPHA-13
1 parent 021e8d8 commit 657d465

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-12'
3+
s.version = '1.0.0-ALPHA-13'
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-12'
3+
s.version = '1.0.0-ALPHA-13'
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-12'
3+
s.version = '1.0.0-ALPHA-13'
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
@@ -23,7 +23,7 @@ Compatibility versions for older and/or preview Kotlin versions are also availab
2323
Add the library to your shared Kotlin module:
2424
```kotlin
2525
dependencies {
26-
api("com.rickclephas.kmm:kmm-viewmodel-core:1.0.0-ALPHA-12")
26+
api("com.rickclephas.kmm:kmm-viewmodel-core:1.0.0-ALPHA-13")
2727
}
2828
```
2929

@@ -128,7 +128,7 @@ class TimeTravelFragment: Fragment(R.layout.fragment_time_travel) {
128128
Add the Swift package to your `Package.swift` file:
129129
```swift
130130
dependencies: [
131-
.package(url: "https://github.com/rickclephas/KMM-ViewModel.git", from: "1.0.0-ALPHA-12")
131+
.package(url: "https://github.com/rickclephas/KMM-ViewModel.git", from: "1.0.0-ALPHA-13")
132132
]
133133
```
134134

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

141141
If you like you can also use CocoaPods instead of SPM:
142142
```ruby
143-
pod 'KMMViewModelSwiftUI', '1.0.0-ALPHA-12'
143+
pod 'KMMViewModelSwiftUI', '1.0.0-ALPHA-13'
144144
```
145145
</p>
146146
</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-12"
18+
version = "1.0.0-ALPHA-13"
1919

2020
repositories {
2121
mavenCentral()

0 commit comments

Comments
 (0)