From 2879eb44f41d7a860fdebe9cf4cbe6e9cef64933 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Tue, 21 May 2024 19:29:50 +0000 Subject: [PATCH 1/2] - upgrade to stable relase of Kotlin 2.0.0 - upgrade to stable release of Compose Multiplatform 1.6.10 --- gradle/libs.versions.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 3d5e0aade..42f3236ec 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -7,13 +7,13 @@ targetSdk = "34" gradleBuild = "8.4.0" # kotlin dokka = "1.9.20" -kotlinCore = { require = "2.0.0-RC2" } -kotlinCoroutines = { require = "1.8.0" } +kotlinCore = { require = "2.0.0" } +kotlinCoroutines = { require = "1.8.1" } kotlinxSerialization = "1.6.3" kotlinxCollections = "0.3.7" # compose compose = "1.6.7" -compose-plugin = "1.6.10-rc01" +compose-plugin = "1.6.10" composeUi = "1.6.7" # foundation / material # androidx activity = "1.9.0" From f6690dc75fd11d682d72aa6eb32f33c231b8daba Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Tue, 21 May 2024 19:35:05 +0000 Subject: [PATCH 2/2] - automatically update dependency definitionfile --- .github/workflows/static.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 8c8960cca..dcdd98381 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -43,7 +43,8 @@ jobs: uses: gradle/actions/setup-gradle@v3 - name: Build Page run: | - ./gradlew app-wasm:wasmJsBrowserDistribution --no-configuration-cache + ./gradlew :app-wasm:exportLibraryDefinitions -PaboutLibraries.exportPath=src/commonMain/composeResources/files/ + ./gradlew :app-wasm:wasmJsBrowserDistribution --no-configuration-cache - name: Upload artifact uses: actions/upload-pages-artifact@v3