Files
1jehuang--jcode/changelog/README.md
T
wehub-resource-sync a789495a98
FreeBSD Smoke / FreeBSD Smoke (x86_64) (push) Has been cancelled
CI / Quality Guardrails (push) Has been cancelled
CI / Build & Test (macos-latest) (push) Has been cancelled
CI / Build & Test (ubuntu-latest) (push) Has been cancelled
CI / Build & Test (windows-latest) (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / PowerShell Syntax (push) Has been cancelled
CI / Windows Cross-Target Check (Linux) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:10:34 +08:00

57 lines
1.7 KiB
Markdown

# Changelog entries
User-facing changelog entries for jcode releases. One JSON file per release,
written by the agent during `/cut-release`, reviewed in the release diff, and
consumed by jcode.sh and the GitHub release body.
## Files
- `v<version>.json` - one entry per release (e.g. `v0.34.0.json`).
- `index.json` - newest-first list of released versions with dates, so
consumers can discover entries without directory listings.
## Entry schema
```json
{
"version": "0.34.0",
"date": "2026-07-02",
"title": "Optional short release name",
"highlights": [
"One-sentence, user-facing description of the most important change."
],
"improvements": [
"Smaller user-visible improvements."
],
"fixes": [
"Bug fixes described by their user-visible effect."
]
}
```
## index.json schema
```json
{
"entries": [
{ "version": "0.34.0", "date": "2026-07-02" }
]
}
```
## Writing guidelines
- Write for users of jcode, not contributors. Describe the effect, not the
implementation ("swarm agents no longer lose retried commands", not
"close mutation-dedup races").
- Skip internal-only changes entirely: refactors, CI, test-only, code moves.
If a release is purely internal, say so in a single `improvements` item like
"Internal reliability and performance work."
- One sentence per item. No trailing periods needed, but be consistent within
an entry.
- `highlights` is for the 1-3 changes a user would actually notice or care
about. Everything else goes in `improvements` or `fixes`. Omit empty arrays.
- `title` is optional. Use it only when a release has an obvious theme.
- Keep the full commit log as the source of truth; the changelog is a
user-facing layer over it, never a replacement.