Skip to content

Commit 49443ba

Browse files
authored
Prepare for release 0.6.2 (#81)
1 parent d762692 commit 49443ba

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ Sync your project to complete the setup.
191191
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.
192192

193193
| Stability Analyzer | Kotlin |
194-
|-------------------|-------------|
195-
| 0.4.0~0.6.1 | 2.2.21 |
194+
|--------------------|-------------|
195+
| 0.4.0~0.6.1 | 2.2.21 |
196196

197197
### TraceRecomposition Annotation
198198

app/stability/app.stability

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ public fun com.skydoves.myapplication.Card(modifier: androidx.compose.ui.Modifie
2626
- func3: STABLE (function type)
2727
- content: STABLE (function type)
2828

29+
@Composable
30+
private fun com.skydoves.myapplication.ComposableValue(): kotlin.String
31+
skippable: true
32+
restartable: true
33+
params:
34+
2935
@Composable
3036
public fun com.skydoves.myapplication.CorrectUsage(): kotlin.Unit
3137
skippable: true

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ androidGradlePlugin = "8.13.1"
1313
androidxActivity = "1.11.0"
1414
androidxComposeBom = "2025.12.00"
1515
jetbrains-compose = "1.9.3"
16-
compose-stability-analyzer = "0.6.0"
16+
compose-stability-analyzer = "0.6.1"
1717
spotless = "6.21.0"
1818
shadow = "8.1.1"
1919

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.1"
48+
private const val VERSION = "0.6.2"
4949

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

0 commit comments

Comments
 (0)