File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed
stability-gradle/src/main/kotlin/com/skydoves/compose/stability/gradle Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 0.6.5] - 2025-12-17
9+
10+ ### Added
11+ - ** Quiet mode for stability validation** (Issue #83 )
12+ - New ` quietCheck: Boolean = false ` option in ` stabilityValidation ` configuration
13+ - Suppresses "✅ Stability check passed." messages for modules that pass checks
14+ - Reduces log noise in multi-module projects where many modules pass validation
15+ - Errors and warnings still shown normally
16+ - Example: ` stabilityValidation { quietCheck.set(true) } `
17+
18+ ### Changed
19+ - ** Upgraded to Kotlin 2.3.0**
20+
821## [ 0.6.4] - 2025-12-16
922
1023### Fixed
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ This is incredibly useful for:
170170First, add the plugin to the ` [plugins] ` section of your ` libs.versions.toml ` file:
171171
172172``` toml
173- stability-analyzer = { id = " com.github.skydoves.compose.stability.analyzer" , version = " 0.6.4 " }
173+ stability-analyzer = { id = " com.github.skydoves.compose.stability.analyzer" , version = " 0.6.5 " }
174174```
175175
176176Then, apply it to your root ` build.gradle.kts ` with ` apply false ` :
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ kotlin.mpp.androidGradlePluginCompatibility.nowarn=true
5151
5252# Maven publishing
5353GROUP =com.github.skydoves
54- VERSION_NAME =0.6.4
54+ VERSION_NAME =0.6.5
5555
5656POM_URL =https://github.com/skydoves/compose-stability-analyzer/
5757POM_SCM_URL =https://github.com/skydoves/compose-stability-analyzer/
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public class StabilityAnalyzerGradlePlugin : KotlinCompilerPluginSupportPlugin {
4545
4646 // This version should match the version in gradle.properties
4747 // Update this when bumping the library version
48- private const val VERSION = " 0.6.4 "
48+ private const val VERSION = " 0.6.5 "
4949
5050 // Compiler option keys
5151 private const val OPTION_ENABLED = " enabled"
You can’t perform that action at this time.
0 commit comments