Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ This is incredibly useful for:
Add the dependency below to your `libs.versions.toml` file:

```toml
stability-analyzer = { id = "com.github.skydoves.compose.stability.analyzer", version = "0.4.0" }
stability-analyzer = { id = "com.github.skydoves.compose.stability.analyzer", version = "0.4.1" }
```

Next, apply the plugin on your root's `build.gradle.kts` file like below:
Expand All @@ -135,8 +135,9 @@ alias(libs.plugins.stability.analyzer)
It’s **strongly recommended to use the exact same Kotlin version** as this library. Using a different Kotlin version may lead to compilation errors during the build process.

| Stability Analyzer | Kotlin |
|-------------|-------------|
| 0.4.0 | 2.2.21 |
|--------------------|-------------|
| 0.4.1 | 2.2.21 |
| 0.4.0 | 2.2.21 |

### TraceRecomposition Annotation

Expand Down
12 changes: 12 additions & 0 deletions compose-stability-analyzer-idea/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to the IntelliJ IDEA plugin will be documented in this file.

## [0.4.1] - 2025-11-02

### Fixed
- Fixed stability analysis for Compose shape types (RoundedCornerShape, CircleShape, etc.) to correctly show as STABLE instead of RUNTIME
- Improved consistency between IDEA plugin and compiler plugin stability inference
- Added Compose Foundation shapes to known stable types list

### Improved
- Enhanced accuracy of stability analysis to match compiler plugin behavior

---

## [0.4.0] - 2025-11-02

### Added
Expand Down