Skip to content

Commit ba294fd

Browse files
authored
Merge pull request #103 from PatilShreyas/v1.3.0
Release v1.3.0
2 parents 9518d22 + 08b1174 commit ba294fd

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
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.1.0"
225+
const val VERSION = "v1.2.0"
226226
}

docs/use/using-cli.md

Lines changed: 2 additions & 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.1.0 options_list
59+
Usage: Compose Compiler Report to HTML Generator ~ v1.2.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 }
@@ -68,6 +68,7 @@ Run the command to know the usage of CLI
6868
--includeStableComposables [true] -> Whether to include stable Composable functions in the report
6969
--includeStableClasses [true] -> Whether to include stable classes in the report
7070
--includeClasses [true] -> Whether to include all the classes in the report
71+
--showOnlyUnstableComposables [false] -> Whether to ONLY include unstable composables in the report
7172
--help, -h -> Usage info
7273
```
7374

docs/use/using-gradle-plugin.md

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

2020
```groovy title="build.gradle"
2121
plugins {
22-
id "dev.shreyaspatil.compose-compiler-report-generator" version "1.1.0"
22+
id "dev.shreyaspatil.compose-compiler-report-generator" version "1.2.0"
2323
}
2424
```
2525

2626
=== "Kotlin"
2727

2828
```kotlin title="build.gradle.kts"
2929
plugins {
30-
id("dev.shreyaspatil.compose-compiler-report-generator") version "1.1.0"
30+
id("dev.shreyaspatil.compose-compiler-report-generator") version "1.2.0"
3131
}
3232
```
3333

@@ -45,7 +45,7 @@ Add this to top project level `build.gradle`
4545
}
4646
}
4747
dependencies {
48-
classpath "dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.1.0"
48+
classpath "dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.2.0"
4949
}
5050
}
5151
```
@@ -66,7 +66,7 @@ Add this to top project level `build.gradle`
6666
}
6767
}
6868
dependencies {
69-
classpath("dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.1.0")
69+
classpath("dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.2.0")
7070
}
7171
}
7272
```
@@ -133,6 +133,9 @@ If you have to configure plugin parameters manually (which is completely optiona
133133

134134
// Whether to include the ALL classes in the final report or not.
135135
includeClasses = true/false // Default: true
136+
137+
// ONLY show unstable composables in the report without stats and classes
138+
showOnlyUnstableComposables = true/false // Default: false
136139
}
137140
```
138141

@@ -160,5 +163,8 @@ If you have to configure plugin parameters manually (which is completely optiona
160163

161164
// Whether to include the ALL classes in the final report or not.
162165
includeClasses.set(true/false) // Default: true
166+
167+
// ONLY show unstable composables in the report without stats and classes
168+
showOnlyUnstableComposables = true/false // Default: false
163169
}
164170
```

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
kotlin.code.style=official
22

33
GROUP=dev.shreyaspatil.compose-compiler-report-generator
4-
VERSION_NAME=1.1.0
4+
VERSION_NAME=1.2.0
55

66
# Library configuration
77
SONATYPE_HOST=DEFAULT

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.1.0",
10+
"version": "1.2.0",
1111
"jdeploy": {
1212
"jdk": false,
1313
"javaVersion": "11",

0 commit comments

Comments
 (0)