Skip to content

Commit

Permalink
Bump version: 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PatilShreyas committed Oct 19, 2024
1 parent 309f443 commit 7be2856
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,5 +222,5 @@ fun printHeader(header: String) =
)

object Constants {
const val VERSION = "v1.4.0"
const val VERSION = "v1.4.1"
}
2 changes: 1 addition & 1 deletion docs/use/using-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Run the command to know the usage of CLI
!!! success "▶️Output"

```shell
Usage: Compose Compiler Report to HTML Generator ~ v1.4.0 options_list
Usage: Compose Compiler Report to HTML Generator ~ v1.4.1 options_list
Options:
--applicationName, -app -> Application name (To be displayed in the report) (always required) { String }
--inputDirectory, -i -> Input directory where composable report and metrics are available { String }
Expand Down
8 changes: 4 additions & 4 deletions docs/use/using-gradle-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ Apply the plugin to the module in which _**compose is enabled**_.

```groovy title="build.gradle"
plugins {
id "dev.shreyaspatil.compose-compiler-report-generator" version "1.4.0"
id "dev.shreyaspatil.compose-compiler-report-generator" version "1.4.1"
}
```

=== "Kotlin"

```kotlin title="build.gradle.kts"
plugins {
id("dev.shreyaspatil.compose-compiler-report-generator") version "1.4.0"
id("dev.shreyaspatil.compose-compiler-report-generator") version "1.4.1"
}
```

Expand All @@ -47,7 +47,7 @@ Add this to top project level `build.gradle`
}
}
dependencies {
classpath "dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.4.0"
classpath "dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.4.1"
}
}
```
Expand All @@ -68,7 +68,7 @@ Add this to top project level `build.gradle`
}
}
dependencies {
classpath("dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.4.0")
classpath("dev.shreyaspatil.compose-compiler-report-generator:gradle-plugin:1.4.1")
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
kotlin.code.style=official

GROUP=dev.shreyaspatil.compose-compiler-report-generator
VERSION_NAME=1.4.0
VERSION_NAME=1.4.1

# Library configuration
SONATYPE_HOST=DEFAULT
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"main": "index.js",
"preferGlobal": true,
"repository": "https://github.com/PatilShreyas/compose-report-to-html",
"version": "1.4.0",
"version": "1.4.1",
"jdeploy": {
"jdk": false,
"javaVersion": "11",
Expand Down

0 comments on commit 7be2856

Please sign in to comment.