File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed
stability-gradle/src/main/kotlin/com/skydoves/compose/stability/gradle Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,16 @@ 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.6] - 2025-12-24
9+
10+ ### Fixed
11+ - ** Fixed stabilityDump task incorrectly marked as UP-TO-DATE**
12+ - Task now properly tracks the ` stability-info.json ` input file for up-to-date checks
13+ - Changed from ` @Internal ` to ` @InputFiles ` annotation on input file property
14+ - Ensures stability files are regenerated when compiler output changes
15+ - Fixes issue where running ` ./gradlew stabilityDump ` would skip execution even when stability files were missing
16+ - Task now correctly runs after ` clean ` or when stability output is deleted
17+
818## [ 0.6.5] - 2025-12-17
919
1020### Added
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.5 " }
173+ stability-analyzer = { id = " com.github.skydoves.compose.stability.analyzer" , version = " 0.6.6 " }
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.5
54+ VERSION_NAME =0.6.6
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.5 "
48+ private const val VERSION = " 0.6.6 "
4949
5050 // Compiler option keys
5151 private const val OPTION_ENABLED = " enabled"
You can’t perform that action at this time.
0 commit comments