25fb843c40
The prior commit switched the recipe to `[source] path = "source"`, but .gitignore:77 still listed `local/recipes/shells/brush/source` (a leftover from when brush was a transient upstream git fetch), so the vendored tree was not tracked — a fresh clone would have no brush source and the build would fail. Drop that ignore line and commit the vendored working tree (reubeno/brush @ 897b373e, with the Redox port patches pre-applied). brush is now a durable local fork like the other path=source recipes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
36 lines
841 B
TOML
36 lines
841 B
TOML
[workspace]
|
|
# disable the changelog for all packages
|
|
# ref: https://release-plz.ieni.dev/docs/extra/single-changelog
|
|
changelog_config = "cliff.toml"
|
|
changelog_update = false
|
|
git_release_enable = false
|
|
publish = true
|
|
|
|
[[package]]
|
|
name = "brush"
|
|
version_group = "brush-shell-group" # Version-locked to brush-shell
|
|
|
|
[[package]]
|
|
name = "brush-shell"
|
|
version_group = "brush-shell-group"
|
|
changelog_update = true
|
|
changelog_path = "./CHANGELOG.md"
|
|
changelog_include = [
|
|
"brush-core",
|
|
"brush-interactive-shell",
|
|
"brush-parser",
|
|
]
|
|
git_release_latest = true
|
|
git_release_draft = true
|
|
git_release_enable = true
|
|
git_release_name = "brush v{{ version }}"
|
|
git_release_body = """
|
|
{{ changelog }}
|
|
{% if remote.contributors %}
|
|
### Contributors
|
|
{% for contributor in remote.contributors %}
|
|
* @{{ contributor.username }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
"""
|