From fb1d10f2e1c3864b9691f2fb690aa82b2c45c868 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 06:01:57 +0000 Subject: [PATCH 1/2] Bump the versions group with 2 updates Bumps the versions group with 2 updates: [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) and [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization). Updates `ru.astrainteractive.klibs:kstorage` from 2.3.0 to 2.4.1 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/2.3.0...2.4.1) Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.7.0 to 1.7.1 - [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases) - [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md) - [Commits](https://github.com/Kotlin/kotlinx.serialization/compare/v1.7.0...v1.7.1) --- updated-dependencies: - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] --- gradle/libs.versions.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 7376c46..6e4dc28 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,7 +3,7 @@ kotlin-version = "2.0.0" # https://github.com/JetBrains/kotlin kotlin-coroutines = "1.9.0-RC" # https://github.com/Kotlin/kotlinx.coroutines kotlin-android-application = "8.5.0" # https://developer.android.com/build/releases/gradle-plugin -kotlin-serialization-json = "1.7.0" # https://github.com/Kotlin/kotlinx.serialization +kotlin-serialization-json = "1.7.1" # https://github.com/Kotlin/kotlinx.serialization # Androidx androidx-material = "1.12.0" # https://github.com/material-components/material-components-android @@ -30,7 +30,7 @@ ktor = "2.3.12" # https://github.com/ktorio/ktor # klibs klibs-mikro = "1.8.4" # https://github.com/makeevrserg/klibs.mikro -klibs-kstorage = "2.3.0" # https://github.com/makeevrserg/klibs.kstorage +klibs-kstorage = "2.4.1" # https://github.com/makeevrserg/klibs.kstorage klibs-kdi = "1.4.5" # https://github.com/makeevrserg/KDI # Compose From 62e148db14a4435abbbad94de8fbe7db16513c91 Mon Sep 17 00:00:00 2001 From: Roman Makeev Date: Fri, 5 Jul 2024 19:40:52 +0300 Subject: [PATCH 2/2] fix build with krates --- gradle.properties | 4 ++-- .../features/theme/data/repository/ThemeSwitcherRepository.kt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gradle.properties b/gradle.properties index bb08214..37a24c3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -38,8 +38,8 @@ makeevrserg.android.sdk.target=34 # Project makeevrserg.project.name=ApplicationTemplate makeevrserg.project.group=com.makeevrserg.applicationtemplate -makeevrserg.project.version.string=1.2.4 -makeevrserg.project.version.code=16 +makeevrserg.project.version.string=1.2.5 +makeevrserg.project.version.code=17 makeevrserg.project.description=Template for KMP applcation makeevrserg.project.developers=makeevrserg|Makeev Roman|makeevrserg@gmail.com makeevrserg.project.url=https://github.com/makeevrserg/KMP-Template diff --git a/modules/features/theme/impl/src/commonMain/kotlin/com/makeevrserg/applicationtemplate/mobile/features/theme/data/repository/ThemeSwitcherRepository.kt b/modules/features/theme/impl/src/commonMain/kotlin/com/makeevrserg/applicationtemplate/mobile/features/theme/data/repository/ThemeSwitcherRepository.kt index fcbe6bc..29eec61 100644 --- a/modules/features/theme/impl/src/commonMain/kotlin/com/makeevrserg/applicationtemplate/mobile/features/theme/data/repository/ThemeSwitcherRepository.kt +++ b/modules/features/theme/impl/src/commonMain/kotlin/com/makeevrserg/applicationtemplate/mobile/features/theme/data/repository/ThemeSwitcherRepository.kt @@ -1,9 +1,9 @@ package com.makeevrserg.applicationtemplate.mobile.features.theme.data.repository import com.makeevrserg.applicationtemplate.mobile.features.theme.data.model.Theme -import ru.astrainteractive.klibs.kstorage.api.StateFlowMutableKrate +import ru.astrainteractive.klibs.kstorage.api.StateFlowKrate internal interface ThemeSwitcherRepository { - val themeFlowStorageValue: StateFlowMutableKrate + val themeFlowStorageValue: StateFlowKrate.Mutable }