Skip to content

Commit

Permalink
Bump version to 1.0.0-BETA-8
Browse files Browse the repository at this point in the history
  • Loading branch information
rickclephas committed Dec 8, 2024
1 parent 36a1a55 commit a4df757
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion KMPObservableViewModelCore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KMPObservableViewModelCore'
s.version = '1.0.0-BETA-7'
s.version = '1.0.0-BETA-8'
s.summary = 'Library to share Kotlin ViewModels with Swift'

s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'
Expand Down
2 changes: 1 addition & 1 deletion KMPObservableViewModelCoreObjC.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KMPObservableViewModelCoreObjC'
s.version = '1.0.0-BETA-7'
s.version = '1.0.0-BETA-8'
s.summary = 'Library to share Kotlin ViewModels with Swift'

s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'
Expand Down
2 changes: 1 addition & 1 deletion KMPObservableViewModelSwiftUI.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KMPObservableViewModelSwiftUI'
s.version = '1.0.0-BETA-7'
s.version = '1.0.0-BETA-8'
s.summary = 'Library to share Kotlin ViewModels with SwiftUI'

s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ but not all targets support AndroidX and/or SwiftUI interop:
| JS || - | - |
| Wasm || - | - |

The latest version of the library uses Kotlin version `2.0.21`.
The latest version of the library uses Kotlin version `2.1.0`.
Compatibility versions for older and/or preview Kotlin versions are also available:

| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
|--------------|---------------------|:-----------:|:----------:|:------------------:|
| _latest_ | -kotlin-2.1.0-RC2 | 2.1.0-RC2 | 1.9.0 | 2.8.4 |
| **_latest_** | **_no suffix_** | **2.0.21** | **1.9.0** | **2.8.4** |
| 1.0.0-BETA-6 | _no suffix_ | 2.0.20 | 1.9.0 | 2.8.4 |
| 1.0.0-BETA-4 | _no suffix_ | 2.0.10 | 1.8.1 | 2.8.4 |
| 1.0.0-BETA-3 | _no suffix_ | 2.0.0 | 1.8.1 | 2.8.0 |
| 1.0.0-BETA-2 | _no suffix_ | 1.9.24 | 1.8.1 | 2.8.0 |
| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
|--------------|---------------------|:---------:|:----------:|:------------------:|
| **_latest_** | **_no suffix_** | **2.1.0** | **1.9.0** | **2.8.4** |
| 1.0.0-BETA-7 | _no suffix_ | 2.0.21 | 1.9.0 | 2.8.4 |
| 1.0.0-BETA-6 | _no suffix_ | 2.0.20 | 1.9.0 | 2.8.4 |
| 1.0.0-BETA-4 | _no suffix_ | 2.0.10 | 1.8.1 | 2.8.4 |
| 1.0.0-BETA-3 | _no suffix_ | 2.0.0 | 1.8.1 | 2.8.0 |
| 1.0.0-BETA-2 | _no suffix_ | 1.9.24 | 1.8.1 | 2.8.0 |

## Kotlin

Expand All @@ -44,7 +44,7 @@ kotlin {
}
commonMain {
dependencies {
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-7")
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-8")
}
}
}
Expand Down Expand Up @@ -151,7 +151,7 @@ After you have configured your `shared` Kotlin module and created a ViewModel it
Start by adding the Swift package to your `Package.swift` file:
```swift
dependencies: [
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-7")
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-8")
]
```

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

If you like you can also use CocoaPods instead of SPM:
```ruby
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-7'
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-8'
```
</p>
</details>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {

allprojects {
group = "com.rickclephas.kmp"
version = "1.0.0-BETA-7-kotlin-2.1.0-RC2"
version = "1.0.0-BETA-8"

repositories {
mavenCentral()
Expand Down

0 comments on commit a4df757

Please sign in to comment.