Skip to content

Commit

Permalink
up version to 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
0xera committed Feb 10, 2024
1 parent 4d62d7c commit 953b615
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```

Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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")
}
```

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.4.1
VERSION_NAME=0.4.2

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.4.1
VERSION_NAME=0.4.2

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

0 comments on commit 953b615

Please sign in to comment.