Skip to content

Commit 1ee9694

Browse files
committed
up to 0.7 and drop support old kotlin 1.x
1 parent 211f013 commit 1ee9694

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ The repository contains utilities for Jetpack Compose, including Kotlin compiler
66

77
### Kotlin Compiler Plugins
88

9-
| Plugin Version | Kotlin version |
10-
|----------------|------------------|
11-
| 0.6.3 | 1.8.10 - 1.9.23 |
12-
| 0.6-k2 | 2.0 |
13-
| 0.6.2-k2 | 2.0.20 |
14-
| 0.6.3.1-k2 | 2.1.0 |
9+
| Plugin Version | Kotlin version |
10+
|----------------|-----------------|
11+
| 0.7 | 1.8.10 - 1.9.23 |
12+
| 0.6-k2 | 2.0 |
13+
| 0.6.2-k2 | 2.0.20 |
14+
| 0.7 | 2.1.0 |
1515

1616
Currently, the following compiler plugins are available:
1717
- 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.
@@ -26,7 +26,7 @@ How to use?
2626
1. Apply Gradle plugin
2727
```kotlin
2828
plugins {
29-
id("com.vk.vkompose") version "0.6.3"
29+
id("com.vk.vkompose") version "0.7"
3030
}
3131
```
3232

@@ -41,7 +41,7 @@ vkompose {
4141
// https://issuetracker.google.com/issues/309765121
4242
stabilityConfigurationPath = "/path/file.config"
4343

44-
// since 0.6.3 if strong skipping feature of Compose Compiler is enabled
44+
// since 0.7 if strong skipping feature of Compose Compiler is enabled
4545
strongSkippingEnabled = true
4646
// or
4747
strongSkipping {
@@ -93,13 +93,13 @@ TestTagDrawConfig.isEnabled = true
9393
Besides these plugins are published separately. So if you want to use only one, you can do.
9494
```kotlin
9595
plugins {
96-
id("com.vk.recompose-highlighter") version "0.6.3"
97-
id("com.vk.recompose-logger") version "0.6.3"
98-
id("com.vk.compose-test-tag-applier") version "0.6.3"
99-
id("com.vk.compose-test-tag-cleaner") version "0.6.3"
100-
id("com.vk.compose-test-tag-drawer") version "0.6.3"
101-
id("com.vk.compose-source-information-cleaner") version "0.6.3"
102-
id("com.vk.composable-skippability-checker") version "0.6.3"
96+
id("com.vk.recompose-highlighter") version "0.7"
97+
id("com.vk.recompose-logger") version "0.7"
98+
id("com.vk.compose-test-tag-applier") version "0.7"
99+
id("com.vk.compose-test-tag-cleaner") version "0.7"
100+
id("com.vk.compose-test-tag-drawer") version "0.7"
101+
id("com.vk.compose-source-information-cleaner") version "0.7"
102+
id("com.vk.composable-skippability-checker") version "0.7"
103103
}
104104

105105
recomposeHighlighter {

gradle-plugin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ POM_NAME=vkompose
22
POM_DESCRIPTION=Gradle plugins for Jetpack Compose
33
POM_URL=https://github.com/VKCOM/vkompose
44
POM_INCEPTION_YEAR=2023
5-
VERSION_NAME=0.6.3.1-k2
5+
VERSION_NAME=0.7
66

77
POM_LICENSE_NAME=MIT
88
POM_LICENSE_URL=https://opensource.org/licenses/MIT

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ POM_NAME=vkompose
2626
POM_DESCRIPTION=Utilities for Jetpack Compose
2727
POM_URL=https://github.com/VKCOM/vkompose
2828
POM_INCEPTION_YEAR=2023
29-
VERSION_NAME=0.6.3.1-k2
29+
VERSION_NAME=0.7
3030

3131
POM_LICENSE_NAME=MIT
3232
POM_LICENSE_URL=https://opensource.org/licenses/MIT

0 commit comments

Comments
 (0)