From b419f0650525c49dc241069b073f46ab583fa944 Mon Sep 17 00:00:00 2001 From: GuilhE Date: Thu, 25 Jan 2024 23:36:02 +0000 Subject: [PATCH] Kotlin and KSP versions bump --- CHANGELOG.md | 7 +++++++ README.md | 2 +- build.gradle.kts | 2 +- gradle/libs.versions.toml | 6 +++--- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c75d334..3a50fed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog --- +## [1.4.0-ALPHA] + +- Kotlin 1.9.22 +- KSP 1.0.17 + +--- + ## [1.3.0-ALPHA] - Kotlin 1.9.21 diff --git a/README.md b/README.md index f209e3d..55c53f1 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Kotlin Multiplatform and Compose Multiplatform are built upon the philosophy of | Version | Kotlin | KSP | K2 | Compose Multiplatform | Xcode | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------:|:------:|:---:|:---------------------:|:------------:| -| [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.guilhe.kmp/kmp-composeuiviewcontroller-ksp/badge.svg)](https://search.maven.org/artifact/com.github.guilhe.kmp/kmp-composeuiviewcontroller-ksp) | 1.9.21 | 1.0.15 | Yes | 1.5.11 | 14.3.1, 15.0 | +| [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.guilhe.kmp/kmp-composeuiviewcontroller-ksp/badge.svg)](https://search.maven.org/artifact/com.github.guilhe.kmp/kmp-composeuiviewcontroller-ksp) | 1.9.21 | 1.0.15 | Yes | 1.5.11 | 14.3.1, 15.2 | It's important to note that this addresses the [current](https://github.com/JetBrains/compose-multiplatform/issues/3478) Compose Multiplatform API design. Depending on JetBrains' future implementations, this may potentially become deprecated. diff --git a/build.gradle.kts b/build.gradle.kts index e5c10b9..c00288a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,5 +12,5 @@ buildscript { allprojects { group = "com.github.guilhe.kmp" - version = "1.3.0-ALPHA" + version = "1.4.0-ALPHA" } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 074d473..b7dc82e 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,11 +1,11 @@ [versions] -kotlin = "1.9.21" -ksp = "1.9.21-1.0.15" +kotlin = "1.9.22" +ksp = "1.9.22-1.0.17" androidTools = "8.1.2" compileTesting = "1.5.0" junit = "4.13.2" -composeuiviewcontroller = "1.3.0-ALPHA" +composeuiviewcontroller = "1.4.0-ALPHA" [plugins]