Skip to content

Commit a0ed30e

Browse files
authored
doc(changelog): cliff config (#19)
1 parent 62a289a commit a0ed30e

2 files changed

Lines changed: 22 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.3.0] - 2026-02-02
56

67
### Bug Fixes
78

@@ -13,6 +14,11 @@ All notable changes to this project will be documented in this file.
1314
- Bump the github-actions group with 3 updates (#15)
1415

1516

17+
### Dependencies
18+
19+
- Bump clap from 4.5.54 to 4.5.56 in the rust-dependencies group (#14)
20+
21+
1622
### Documentation
1723

1824
- Rewrite for clarity and supply chain focus (#18)
@@ -22,18 +28,13 @@ All notable changes to this project will be documented in this file.
2228

2329
- Add allow_list_dirs for Bun runtime compatibility (#17)
2430

25-
26-
### Deps
27-
28-
- Bump clap from 4.5.54 to 4.5.56 in the rust-dependencies group (#14)
29-
30-
31+
## [0.2.9] - 2026-01-31
3132

3233
### Bug Fixes
3334

3435
- **profile:** Allow Claude Code UID-suffixed tmp dirs and skills (#12)
3536

36-
37+
## [0.2.8] - 2026-01-30
3738

3839
### Bug Fixes
3940

@@ -44,25 +45,25 @@ All notable changes to this project will be documented in this file.
4445

4546
- Update installation to recommend Homebrew over Cargo
4647

47-
48+
## [0.2.7] - 2026-01-29
4849

4950
### Bug Fixes
5051

5152
- **ci:** Simplify homebrew formula update, remove version line
5253

53-
54+
## [0.2.6] - 2026-01-29
5455

5556
### Bug Fixes
5657

5758
- **ci:** Update homebrew script for binary formula
5859

59-
60+
## [0.2.5] - 2026-01-29
6061

6162
### Bug Fixes
6263

6364
- **ci:** Replace mislav action with custom homebrew update script
6465

65-
66+
## [0.2.4] - 2026-01-29
6667

6768
### Bug Fixes
6869

@@ -72,15 +73,15 @@ All notable changes to this project will be documented in this file.
7273

7374
- **ci:** Add GITLEAKS_LICENSE secret to gitleaks action
7475

75-
76+
## [0.2.3] - 2026-01-29
7677

7778
### Bug Fixes
7879

7980
- **ci:** Push directly to homebrew tap instead of forking
8081

8182
- **ci:** Use GitHub App token for release commits
8283

83-
84+
## [0.2.2] - 2026-01-28
8485

8586
### Bug Fixes
8687

@@ -94,4 +95,3 @@ All notable changes to this project will be documented in this file.
9495
- **release:** Simplify Homebrew tap update workflow (#8)
9596

9697

97-

cliff.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,18 @@ All notable changes to this project will be documented in this file.
99
1010
"""
1111
body = """
12+
{% if version %}\
13+
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
14+
{% else %}\
15+
## [Unreleased]
16+
{% endif %}\
1217
{% for group, commits in commits | group_by(attribute="group") %}
1318
### {{ group | striptags | trim | upper_first }}
1419
{% for commit in commits %}
1520
- {% if commit.scope %}**{{ commit.scope }}:** {% endif %}\
1621
{{ commit.message | upper_first }}
1722
{% endfor %}
18-
{% endfor %}\n
23+
{% endfor %}
1924
"""
2025
footer = """
2126
"""
@@ -36,8 +41,9 @@ commit_parsers = [
3641
{ message = "^test", group = "Testing" },
3742
{ message = "^build", group = "Build" },
3843
{ message = "^ci", group = "CI" },
44+
{ message = "^deps", group = "Dependencies" },
3945
{ message = "^chore\\(release\\)", skip = true },
40-
{ message = "^chore\\(deps\\)", skip = true },
46+
{ message = "^chore\\(deps\\)", group = "Dependencies" },
4147
{ message = "^chore", group = "Miscellaneous" },
4248
]
4349
protect_breaking_commits = false

0 commit comments

Comments
 (0)