File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ Update changelog with new version: `./gradlew patchChangelog`
4040
4141Build CLI: ` ./gradlew buildCLI `
4242
43+ Changelog: ` ./gradlew tools:cli:patchChangelog `
44+
4345## Gradle Plugin
4446
4547Test plugin locally: ` ./gradlew :tools:gradle-plugin:publishToMavenLocal `
Original file line number Diff line number Diff line change 11[versions ]
2- cli-version = " 1.0.1 "
2+ cli-version = " 1.1.0 "
33
44clikt = " 5.1.0"
55
Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ ## 1.1.0 - 2026-02-26
6+
57### Added
68
79- Add ` --use-path-data-string ` option to generate addPath with pathData strings instead of path builder calls
1921
2022- Fix parsing of Android system colors (e.g., ` @android:color/white ` ) in XML parser
2123
22- ## [ 1.0.1] - 2025-11-20
24+ ## 1.0.1 - 2025-11-20
2325
2426- Limited changelog output to the last 5 releases
2527- Added ` --show-all ` option to display full changelog
2628
27- ## [ 1.0.0] - 2025-11-17
29+ ## 1.0.0 - 2025-11-17
2830
2931- Stabilize CLI tool
3032- Separate CLI versioning from IDEA Plugin project
3133- Add ` changelog ` command to display CLI changelog
3234
33- ## [ 0.17.3] - 2025-10-14
35+ ## 0.17.3 - 2025-10-14
3436
3537- Fixed executable permissions for the 'valkyrie' binary in CLI distribution
3638
37- ## [ 0.16.0] - 2025-07-24
39+ ## 0.16.0 - 2025-07-24
3840
3941- Use fully qualified imports if icon name conflicts with Compose qualifiers
4042
41- ## [ 0.15.0] - 2025-06-28
43+ ## 0.15.0 - 2025-06-28
4244
4345- Added ` --auto-mirror ` option to forcibly add "autoMirror=true" or "autoMirror=false" option to generated ImageVector
4446
45- ## [ 0.14.0] - 2025-04-28
47+ ## 0.14.0 - 2025-04-28
4648
4749- Migrate to hierarchical icon pack structure. CLI options ` --iconpack-name ` and ` --nested-packs ` removed in favour of
4850 ` --iconpack `
5557- Added ` --use-compose-colors ` option to use predefined Compose colors instead of hex color codes (e.g. Color.Black
5658 instead of Color(0xFF000000))
5759
58- ## [ 0.13.0] - 2025-03-08
60+ ## 0.13.0 - 2025-03-08
5961
6062- Added ` --preview-annotation-type ` option to specify the type of Preview annotation (must be either 'androidx' or '
6163 jetbrains')
6264
63- ## [ 0.11.0] - 2024-11-25
65+ ## 0.11.0 - 2024-11-25
6466
6567- Initial release of Valkyrie CLI tool
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ plugins {
44 alias(libs.plugins.shadow)
55 alias(libs.plugins.valkyrie.kover)
66 alias(libs.plugins.valkyrie.abi)
7+ alias(libs.plugins.jetbrains.changelog)
78 application
89}
910
@@ -92,6 +93,10 @@ tasks.test {
9293
9394val r8: Configuration by configurations.creating
9495
96+ changelog {
97+ groups.empty()
98+ }
99+
95100dependencies {
96101 implementation(projects.components.generator.iconpack)
97102 implementation(projects.components.generator.jvm.imagevector)
You can’t perform that action at this time.
0 commit comments