chore: Prepare 0.1.0 release scaffolding#1
Merged
Conversation
Bumps build.zig.zon to 0.1.0, drops untracked agent docs from the package paths, marks the TUI dependency lazy so consumers that don't touch the trace viewer don't pay the fetch cost. Adds an MIT LICENSE, a CHANGELOG, a CI workflow that runs build + fmt + tests on Linux and macOS (with a second test pass that flips every unstable flag), and the standard .github issue / PR templates.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Pre-release scaffolding so the repo is ready to cut a
v0.1.0tag and behave like a real published library:build.zig.zon: version bumped to0.1.0. DropsAGENTS.md/CLAUDE.mdfrompaths(those files aren't tracked, so including them in the package manifest was wrong). Marks the TUI dependencylazy = trueso library consumers don't fetch it unless they actually build the trace viewer.LICENSE(MIT). README already advertises it; the file was missing.CHANGELOG.mddocumenting what's in0.1.0plus a Keep-a-Changelog header for future entries..github/workflows/ci.yml: build +zig fmt --check+zig build test --summary allon Linux and macOS, plus a second test pass with every unstable flag set..github/ISSUE_TEMPLATE/*andpull_request_template.md: friction-reducers for outside contributors and a self-checklist for our own PRs.Wire-format impact
None.
Test plan
zig buildcleanzig build test --summary all— 119/130 pass, 11 gated skips, zero leakszig fmt --check src/ tools/passesNotes for the reviewer
CI runs on push and PR. First run will fail-then-pass while we iterate on Zig 0.16.0 availability through
mlugg/setup-zig@v2; if it's not pinned remotely we may need to switch to thegoto-bus-stopaction. Verifiable on first PR run.