Skip to content

Commit f1ca11c

Browse files
committed
Update version: v1.0.0
1 parent afc3829 commit f1ca11c

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-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
@@ -185,5 +185,5 @@ fun printHeader(header: String) = println(
185185
)
186186

187187
object Constants {
188-
const val VERSION = "v1.0.0-beta03"
188+
const val VERSION = "v1.0.0"
189189
}

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.0.0-beta03 options_list
59+
Usage: Compose Compiler Report to HTML Generator ~ v1.0.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
@@ -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.0.0-beta03"
22+
id "dev.shreyaspatil.compose-compiler-report-generator" version "1.0.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.0.0-beta03"
30+
id("dev.shreyaspatil.compose-compiler-report-generator") version "1.0.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.0.0-beta03"
48+
classpath "dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.0.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.0.0-beta03")
69+
classpath("dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.0.0")
7070
}
7171
}
7272
```

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.0.0-beta03
4+
VERSION_NAME=1.0.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.0.0-beta03",
10+
"version": "1.0.0",
1111
"jdeploy": {
1212
"jdk": false,
1313
"javaVersion": "11",

0 commit comments

Comments
 (0)