Skip to content

Commit

Permalink
Bump version to 1.0.0-ALPHA-24
Browse files Browse the repository at this point in the history
  • Loading branch information
rickclephas committed Dec 28, 2023
1 parent ea3d2af commit a92fdf8
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion KMPNativeCoroutinesAsync.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KMPNativeCoroutinesAsync'
s.version = '1.0.0-ALPHA-23'
s.version = '1.0.0-ALPHA-24'
s.summary = 'Swift library for Kotlin Coroutines with Swift Async/Await'

s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines'
Expand Down
2 changes: 1 addition & 1 deletion KMPNativeCoroutinesCombine.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KMPNativeCoroutinesCombine'
s.version = '1.0.0-ALPHA-23'
s.version = '1.0.0-ALPHA-24'
s.summary = 'Swift library for Kotlin Coroutines with Combine'

s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines'
Expand Down
2 changes: 1 addition & 1 deletion KMPNativeCoroutinesCore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KMPNativeCoroutinesCore'
s.version = '1.0.0-ALPHA-23'
s.version = '1.0.0-ALPHA-24'
s.summary = 'Swift library for Kotlin Coroutines'

s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines'
Expand Down
2 changes: 1 addition & 1 deletion KMPNativeCoroutinesRxSwift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KMPNativeCoroutinesRxSwift'
s.version = '1.0.0-ALPHA-23'
s.version = '1.0.0-ALPHA-24'
s.summary = 'Swift library for Kotlin Coroutines with RxSwift'

s.homepage = 'https://github.com/rickclephas/KMP-NativeCoroutines'
Expand Down
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,14 @@ This library solves both of these limitations 😄.

## Compatibility

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

| Version | Version suffix | Kotlin | KSP | Coroutines |
|----------------|---------------------|:-----------:|:----------:|:----------:|
| _latest_ | -kotlin-2.0.0-Beta2 | 2.0.0-Beta2 | 1.0.16 | 1.8.0-RC |
| **_latest_** | **_no suffix_** | **1.9.21** | **1.0.16** | **1.7.3** |
| **_latest_** | **_no suffix_** | **1.9.22** | **1.0.16** | **1.7.3** |
| 1.0.0-ALPHA-23 | _no suffix_ | 1.9.21 | 1.0.16 | 1.7.3 |
| 1.0.0-ALPHA-22 | _no suffix_ | 1.9.21 | 1.0.15 | 1.7.3 |
| 1.0.0-ALPHA-21 | _no suffix_ | 1.9.20 | 1.0.14 | 1.7.3 |
| 1.0.0-ALPHA-19 | _no suffix_ | 1.9.20 | 1.0.13 | 1.7.3 |
Expand Down Expand Up @@ -66,8 +67,8 @@ Make sure to always use the same versions for all the libraries!
For Kotlin just add the plugin to your `build.gradle.kts`:
```kotlin
plugins {
id("com.google.devtools.ksp") version "1.9.21-1.0.16"
id("com.rickclephas.kmp.nativecoroutines") version "1.0.0-ALPHA-23"
id("com.google.devtools.ksp") version "1.9.24-1.0.16"
id("com.rickclephas.kmp.nativecoroutines") version "1.0.0-ALPHA-24"
}
```
and make sure to opt in to the experimental `@ObjCName` annotation:
Expand All @@ -83,7 +84,7 @@ The Swift implementations are available via the Swift Package Manager.
Just add it to your `Package.swift` file:
```swift
dependencies: [
.package(url: "https://github.com/rickclephas/KMP-NativeCoroutines.git", exact: "1.0.0-ALPHA-23")
.package(url: "https://github.com/rickclephas/KMP-NativeCoroutines.git", exact: "1.0.0-ALPHA-24")
],
targets: [
.target(
Expand Down Expand Up @@ -115,9 +116,9 @@ Or add it in Xcode by going to `File` > `Add Packages...` and providing the URL:

If you use CocoaPods add one or more of the following libraries to your `Podfile`:
```ruby
pod 'KMPNativeCoroutinesAsync', '1.0.0-ALPHA-23' # Swift Concurrency implementation
pod 'KMPNativeCoroutinesCombine', '1.0.0-ALPHA-23' # Combine implementation
pod 'KMPNativeCoroutinesRxSwift', '1.0.0-ALPHA-23' # RxSwift implementation
pod 'KMPNativeCoroutinesAsync', '1.0.0-ALPHA-24' # Swift Concurrency implementation
pod 'KMPNativeCoroutinesCombine', '1.0.0-ALPHA-24' # Combine implementation
pod 'KMPNativeCoroutinesRxSwift', '1.0.0-ALPHA-24' # RxSwift implementation
```
> [!NOTE]
> The version for CocoaPods should not contain the Kotlin version suffix (e.g. `-new-mm` or `-kotlin-1.6.0`).
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {

allprojects {
group = "com.rickclephas.kmp"
version = "1.0.0-ALPHA-23"
version = "1.0.0-ALPHA-24"

repositories {
mavenCentral()
Expand Down

0 comments on commit a92fdf8

Please sign in to comment.