Skip to content

Commit

Permalink
up version to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
0xera committed Aug 28, 2024
1 parent 57d27f3 commit d1340ba
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ The repository contains utilities for Jetpack Compose, including Kotlin compiler

| Plugin Version | Kotlin version |
|----------------|-----------------|
| 0.6 | 1.8.10 - 1.9.23 |
| 0.6-k2 | 2.0.0 |
| 0.6.1 | 1.8.10 - 1.9.23 |
| 0.6.1-k2 | 2.0 |

Currently, the following compiler plugins are available:
- Functions skippability checker: Determines [function skippability](https://github.com/androidx/androidx/blob/androidx-main/compose/compiler/design/compiler-metrics.md#functions-that-are-restartable-but-not-skippable) based on checking function parameters stability.
Expand All @@ -24,7 +24,7 @@ How to use?
1. Apply Gradle plugin
```kotlin
plugins {
id("com.vk.vkompose") version "0.6"
id("com.vk.vkompose") version "0.6.1"
}
```

Expand All @@ -39,7 +39,7 @@ vkompose {
// https://issuetracker.google.com/issues/309765121
stabilityConfigurationPath = "/path/file.config"

// since 0.6 if strong skipping feature of Compose Compiler is enabled
// since 0.6.1 if strong skipping feature of Compose Compiler is enabled
strongSkippingEnabled = true
// or
strongSkipping {
Expand Down Expand Up @@ -85,13 +85,13 @@ TestTagDrawConfig.isEnabled = true
Besides these plugins are published separately. So if you want to use only one, you can do.
```kotlin
plugins {
id("com.vk.recompose-highlighter") version "0.6"
id("com.vk.recompose-logger") version "0.6"
id("com.vk.compose-test-tag-applier") version "0.6"
id("com.vk.compose-test-tag-cleaner") version "0.6"
id("com.vk.compose-test-tag-drawer") version "0.6"
id("com.vk.compose-source-information-cleaner") version "0.6"
id("com.vk.composable-skippability-checker") version "0.6"
id("com.vk.recompose-highlighter") version "0.6.1"
id("com.vk.recompose-logger") version "0.6.1"
id("com.vk.compose-test-tag-applier") version "0.6.1"
id("com.vk.compose-test-tag-cleaner") version "0.6.1"
id("com.vk.compose-test-tag-drawer") version "0.6.1"
id("com.vk.compose-source-information-cleaner") version "0.6.1"
id("com.vk.composable-skippability-checker") version "0.6.1"
}

recomposeHighlighter {
Expand Down
2 changes: 1 addition & 1 deletion gradle-plugin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ POM_NAME=vkompose
POM_DESCRIPTION=Gradle plugins for Jetpack Compose
POM_URL=https://github.com/VKCOM/vkompose
POM_INCEPTION_YEAR=2023
VERSION_NAME=0.6
VERSION_NAME=0.6.1

POM_LICENSE_NAME=MIT
POM_LICENSE_URL=https://opensource.org/licenses/MIT
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ POM_NAME=vkompose
POM_DESCRIPTION=Utilities for Jetpack Compose
POM_URL=https://github.com/VKCOM/vkompose
POM_INCEPTION_YEAR=2023
VERSION_NAME=0.6
VERSION_NAME=0.6.1

POM_LICENSE_NAME=MIT
POM_LICENSE_URL=https://opensource.org/licenses/MIT
Expand Down

0 comments on commit d1340ba

Please sign in to comment.