From 953b615bd978868e173e260d5f36eb2f3c54f1b7 Mon Sep 17 00:00:00 2001 From: 0xera <56160164+0xera@users.noreply.github.com> Date: Sat, 10 Feb 2024 23:45:39 +0300 Subject: [PATCH] up version to 0.4.2 --- README.md | 20 ++++++++++---------- gradle-plugin/gradle.properties | 2 +- gradle.properties | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index bfc3398..f4a49b4 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,13 @@ Currently, the following compiler plugins are available: - Test tag generator for Composable functions: Adds generated test tag for composable function if there is a default Modifier that does not have an applied testTag. - Test tag remover: Removes all test tags by replacing them with an empty string. - Test tag drawer: Draws test tags in a dialog for long tap. (It`s very experimental. I am looking for a better solution) -- SourceInformation function calls remover: Yes, you can use sourceInformation option for Compose Compiler "-Pplugin:androidx.compose.compiler.plugins.kotlin:sourceInformation=false", but AGP enables that by default for debug builds. +- SourceInformation function calls remover: Yes, you can use sourceInformation option for Compose Compiler "-Pplugin:androidx.compose.compiler.plugins.kotlin:sourceInformation=false", but AGP enables that by default for debug builds. For AGP 8.4.0 see use Compose Compiler option. You can see fix [here](https://issuetracker.google.com/issues/318384658) How to use? 1. Apply Gradle plugin ```kotlin plugins { - id("com.vk.vkompose") version "0.4.1" + id("com.vk.vkompose") version "0.4.2" } ``` @@ -65,13 +65,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.4.1" - id("com.vk.recompose-logger") version "0.4.1" - id("com.vk.compose-test-tag-applier") version "0.4.1" - id("com.vk.compose-test-tag-cleaner") version "0.4.1" - id("com.vk.compose-test-tag-drawer") version "0.4.1" - id("com.vk.compose-source-information-cleaner") version "0.4.1" - id("com.vk.composable-skippability-checker") version "0.4.1" + id("com.vk.recompose-highlighter") version "0.4.2" + id("com.vk.recompose-logger") version "0.4.2" + id("com.vk.compose-test-tag-applier") version "0.4.2" + id("com.vk.compose-test-tag-cleaner") version "0.4.2" + id("com.vk.compose-test-tag-drawer") version "0.4.2" + id("com.vk.compose-source-information-cleaner") version "0.4.2" + id("com.vk.composable-skippability-checker") version "0.4.2" } recomposeHighlighter { @@ -131,7 +131,7 @@ You can download and install it from the jar file for [Hedgehog](idea-plugin/vko There is one rule available that checks the skippability of functions. To use it, apply the dependency via the detektPlugin configuration in the dependencies block. ```kotlin dependencies { - detektPlugins("com.vk.vkompose:detekt:0.4.1") + detektPlugins("com.vk.vkompose:detekt:0.4.2") } ``` diff --git a/gradle-plugin/gradle.properties b/gradle-plugin/gradle.properties index 74fdc20..5e48e62 100644 --- a/gradle-plugin/gradle.properties +++ b/gradle-plugin/gradle.properties @@ -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.4.1 +VERSION_NAME=0.4.2 POM_LICENSE_NAME=MIT POM_LICENSE_URL=https://opensource.org/licenses/MIT diff --git a/gradle.properties b/gradle.properties index 9e53fa3..7c29670 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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.4.1 +VERSION_NAME=0.4.2 POM_LICENSE_NAME=MIT POM_LICENSE_URL=https://opensource.org/licenses/MIT