Skip to content

Commit d2beaf8

Browse files
authored
Prepare for release 0.6.5 (#96)
1 parent 2f29a48 commit d2beaf8

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ This is incredibly useful for:
170170
First, 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

176176
Then, apply it to your root `build.gradle.kts` with `apply false`:

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ kotlin.mpp.androidGradlePluginCompatibility.nowarn=true
5151

5252
# Maven publishing
5353
GROUP=com.github.skydoves
54-
VERSION_NAME=0.6.4
54+
VERSION_NAME=0.6.5
5555

5656
POM_URL=https://github.com/skydoves/compose-stability-analyzer/
5757
POM_SCM_URL=https://github.com/skydoves/compose-stability-analyzer/

stability-gradle/src/main/kotlin/com/skydoves/compose/stability/gradle/StabilityAnalyzerGradlePlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)