Skip to content

Commit e446e63

Browse files
committed
Update versions
1 parent 7c6d24e commit e446e63

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

cli/src/main/kotlin/dev/shreyaspatil/composeCompilerMetricsGenerator/cli/Main.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,5 +222,5 @@ fun printHeader(header: String) =
222222
)
223223

224224
object Constants {
225-
const val VERSION = "v1.3.1"
225+
const val VERSION = "v1.4.0"
226226
}

docs/use/using-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Run the command to know the usage of CLI
5656
!!! success "▶️Output"
5757

5858
```shell
59-
Usage: Compose Compiler Report to HTML Generator ~ v1.3.1 options_list
59+
Usage: Compose Compiler Report to HTML Generator ~ v1.4.0 options_list
6060
Options:
6161
--applicationName, -app -> Application name (To be displayed in the report) (always required) { String }
6262
--inputDirectory, -i -> Input directory where composable report and metrics are available { String }

docs/use/using-gradle-plugin.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ Apply the plugin to the module in which _**compose is enabled**_.
2121

2222
```groovy title="build.gradle"
2323
plugins {
24-
id "dev.shreyaspatil.compose-compiler-report-generator" version "1.3.1"
24+
id "dev.shreyaspatil.compose-compiler-report-generator" version "1.4.0"
2525
}
2626
```
2727

2828
=== "Kotlin"
2929

3030
```kotlin title="build.gradle.kts"
3131
plugins {
32-
id("dev.shreyaspatil.compose-compiler-report-generator") version "1.3.1"
32+
id("dev.shreyaspatil.compose-compiler-report-generator") version "1.4.0"
3333
}
3434
```
3535

@@ -47,7 +47,7 @@ Add this to top project level `build.gradle`
4747
}
4848
}
4949
dependencies {
50-
classpath "dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.3.1"
50+
classpath "dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.4.0"
5151
}
5252
}
5353
```
@@ -68,7 +68,7 @@ Add this to top project level `build.gradle`
6868
}
6969
}
7070
dependencies {
71-
classpath("dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.3.1")
71+
classpath("dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.4.0")
7272
}
7373
}
7474
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"main": "index.js",
88
"preferGlobal": true,
99
"repository": "https://github.com/PatilShreyas/compose-report-to-html",
10-
"version": "1.3.1",
10+
"version": "1.4.0",
1111
"jdeploy": {
1212
"jdk": false,
1313
"javaVersion": "11",

0 commit comments

Comments
 (0)