diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 593cbca519..aab05b6241 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -38,7 +38,7 @@ serialization_json = "1.6.3" showkase = "1.0.2" appyx = "1.4.0" sqldelight = "2.0.1" -wysiwyg = "2.31.0" +wysiwyg = "2.32.0" telephoto = "0.8.0" # DI diff --git a/plugins/src/main/kotlin/extension/KoverExtension.kt b/plugins/src/main/kotlin/extension/KoverExtension.kt index 20ee1f977f..cfcd18abf9 100644 --- a/plugins/src/main/kotlin/extension/KoverExtension.kt +++ b/plugins/src/main/kotlin/extension/KoverExtension.kt @@ -109,11 +109,11 @@ fun Project.setupKover() { isEnabled = true entity = kotlinx.kover.gradle.plugin.dsl.GroupingEntityType.APPLICATION bound { - minValue = 65 + minValue = 70 // Setting a max value, so that if coverage is bigger, it means that we have to change minValue. // For instance if we have minValue = 20 and maxValue = 30, and current code coverage is now 31.32%, update // minValue to 25 and maxValue to 35. - maxValue = 75 + maxValue = 80 metric = kotlinx.kover.gradle.plugin.dsl.MetricType.INSTRUCTION aggregation = kotlinx.kover.gradle.plugin.dsl.AggregationType.COVERED_PERCENTAGE }