Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

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

## [0.3.0] - 2026-02-02

### Bug Fixes

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


### Dependencies

- Bump clap from 4.5.54 to 4.5.56 in the rust-dependencies group (#14)


### Documentation

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

- Add allow_list_dirs for Bun runtime compatibility (#17)


### Deps

- Bump clap from 4.5.54 to 4.5.56 in the rust-dependencies group (#14)


## [0.2.9] - 2026-01-31

### Bug Fixes

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


## [0.2.8] - 2026-01-30

### Bug Fixes

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

- Update installation to recommend Homebrew over Cargo


## [0.2.7] - 2026-01-29

### Bug Fixes

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


## [0.2.6] - 2026-01-29

### Bug Fixes

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


## [0.2.5] - 2026-01-29

### Bug Fixes

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


## [0.2.4] - 2026-01-29

### Bug Fixes

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

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


## [0.2.3] - 2026-01-29

### Bug Fixes

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

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


## [0.2.2] - 2026-01-28

### Bug Fixes

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



10 changes: 8 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,18 @@ All notable changes to this project will be documented in this file.

"""
body = """
{% if version %}\
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}\
## [Unreleased]
{% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | striptags | trim | upper_first }}
{% for commit in commits %}
- {% if commit.scope %}**{{ commit.scope }}:** {% endif %}\
{{ commit.message | upper_first }}
{% endfor %}
{% endfor %}\n
{% endfor %}
"""
footer = """
"""
Expand All @@ -36,8 +41,9 @@ commit_parsers = [
{ message = "^test", group = "Testing" },
{ message = "^build", group = "Build" },
{ message = "^ci", group = "CI" },
{ message = "^deps", group = "Dependencies" },
{ message = "^chore\\(release\\)", skip = true },
{ message = "^chore\\(deps\\)", skip = true },
{ message = "^chore\\(deps\\)", group = "Dependencies" },
{ message = "^chore", group = "Miscellaneous" },
]
protect_breaking_commits = false
Expand Down