Skip to content

Commit 894b09f

Browse files
authored
Prepare for release 0.6.6 (#99)
1 parent 260ca88 commit 894b09f

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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.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

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.5" }
173+
stability-analyzer = { id = "com.github.skydoves.compose.stability.analyzer", version = "0.6.6" }
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.5
54+
VERSION_NAME=0.6.6
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.5"
48+
private const val VERSION = "0.6.6"
4949

5050
// Compiler option keys
5151
private const val OPTION_ENABLED = "enabled"

0 commit comments

Comments
 (0)