Skip to content

Commit

Permalink
Bump version to 1.0.0-BETA-2
Browse files Browse the repository at this point in the history
  • Loading branch information
rickclephas committed May 15, 2024
1 parent 03480b7 commit 6ab6254
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 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-1'
s.version = '1.0.0-BETA-2'
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-1'
s.version = '1.0.0-BETA-2'
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-1'
s.version = '1.0.0-BETA-2'
s.summary = 'Library to share Kotlin ViewModels with SwiftUI'

s.homepage = 'https://github.com/rickclephas/KMP-ObservableViewModel'
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Compatibility versions for older and/or preview Kotlin versions are also availab

| Version | Version suffix | Kotlin | Coroutines | AndroidX Lifecycle |
|--------------|-------------------|:----------:|:----------:|:------------------:|
| _latest_ | -kotlin-2.0.0-RC2 | 2.0.0-RC2 | 1.8.0 | 2.8.0-rc01 |
| **_latest_** | **_no suffix_** | **1.9.24** | **1.8.0** | **2.8.0-rc01** |
| _latest_ | -kotlin-2.0.0-RC2 | 2.0.0-RC2 | 1.8.1 | 2.8.0 |
| **_latest_** | **_no suffix_** | **1.9.24** | **1.8.1** | **2.8.0** |

## Kotlin

Expand All @@ -40,7 +40,7 @@ kotlin {
}
commonMain {
dependencies {
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-1")
api("com.rickclephas.kmp:kmp-observableviewmodel-core:1.0.0-BETA-2")
}
}
}
Expand Down Expand Up @@ -146,7 +146,7 @@ class TimeTravelFragment: Fragment(R.layout.fragment_time_travel) {
Add the Swift package to your `Package.swift` file:
```swift
dependencies: [
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-1")
.package(url: "https://github.com/rickclephas/KMP-ObservableViewModel.git", from: "1.0.0-BETA-2")
]
```

Expand All @@ -158,7 +158,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-1'
pod 'KMPObservableViewModelSwiftUI', '1.0.0-BETA-2'
```
</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 @@ -21,7 +21,7 @@ buildscript {

allprojects {
group = "com.rickclephas.kmp"
version = "1.0.0-BETA-1"
version = "1.0.0-BETA-2"

repositories {
mavenCentral()
Expand Down

0 comments on commit 6ab6254

Please sign in to comment.