Skip to content

Commit 08289c2

Browse files
committed
chore: update CLI version to 1.1.0 and add changelog configuration
1 parent 24aff8d commit 08289c2

4 files changed

Lines changed: 18 additions & 9 deletions

File tree

DEVELOPMENT.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ Update changelog with new version: `./gradlew patchChangelog`
4040

4141
Build CLI: `./gradlew buildCLI`
4242

43+
Changelog: `./gradlew tools:cli:patchChangelog`
44+
4345
## Gradle Plugin
4446

4547
Test plugin locally: `./gradlew :tools:gradle-plugin:publishToMavenLocal`

gradle/cli.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
cli-version = "1.0.1"
2+
cli-version = "1.1.0"
33

44
clikt = "5.1.0"
55

tools/cli/CHANGELOG.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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
@@ -19,30 +21,30 @@
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`
@@ -55,11 +57,11 @@
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

tools/cli/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

9394
val r8: Configuration by configurations.creating
9495

96+
changelog {
97+
groups.empty()
98+
}
99+
95100
dependencies {
96101
implementation(projects.components.generator.iconpack)
97102
implementation(projects.components.generator.jvm.imagevector)

0 commit comments

Comments
 (0)