Skip to content

Commit a94525b

Browse files
committed
Bump version to 1.0.0-BETA-3
1 parent 3880c03 commit a94525b

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

KMPObservableViewModelCore.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 = 'KMPObservableViewModelCore'
3-
s.version = '1.0.0-BETA-2'
3+
s.version = '1.0.0-BETA-3'
44
s.summary = 'Library to share Kotlin ViewModels with Swift'
55

66
s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'

KMPObservableViewModelCoreObjC.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 = 'KMPObservableViewModelCoreObjC'
3-
s.version = '1.0.0-BETA-2'
3+
s.version = '1.0.0-BETA-3'
44
s.summary = 'Library to share Kotlin ViewModels with Swift'
55

66
s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'

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

66
s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ but not all targets support AndroidX and/or SwiftUI interop:
2121
| JS || - | - |
2222
| Wasm || - | - |
2323

24-
The latest version of the library uses Kotlin version `1.9.24`.
24+
The latest version of the library uses Kotlin version `2.0.0`.
2525
Compatibility versions for older and/or preview Kotlin versions are also available:
2626

27-
| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
28-
|--------------|-------------------|:----------:|:----------:|:------------------:|
29-
| _latest_ | -kotlin-2.0.0-RC3 | 2.0.0-RC3 | 1.8.1 | 2.8.0 |
30-
| **_latest_** | **_no suffix_** | **1.9.24** | **1.8.1** | **2.8.0** |
27+
| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
28+
|--------------|-------------------|:---------:|:----------:|:------------------:|
29+
| **_latest_** | **_no suffix_** | **2.0.0** | **1.8.1** | **2.8.0** |
30+
| 1.0.0-BETA-2 | _no suffix_ | 1.9.24 | 1.8.1 | 2.8.0 |
3131

3232
## Kotlin
3333

@@ -40,7 +40,7 @@ kotlin {
4040
}
4141
commonMain {
4242
dependencies {
43-
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-2")
43+
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-3")
4444
}
4545
}
4646
}
@@ -147,7 +147,7 @@ After you have configured your `shared` Kotlin module and created a ViewModel it
147147
Start by adding the Swift package to your `Package.swift` file:
148148
```swift
149149
dependencies: [
150-
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-2")
150+
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-3")
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 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-2'
162+
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-3'
163163
```
164164
</p>
165165
</details>

build.gradle.kts

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

2222
allprojects {
2323
group = "com.rickclephas.kmp"
24-
version = "1.0.0-BETA-2-kotlin-2.0.0-RC3"
24+
version = "1.0.0-BETA-3"
2525

2626
repositories {
2727
mavenCentral()

0 commit comments

Comments
 (0)