chore(release): prepare v0.1.0 - #214
Merged
Merged
Conversation
- CHANGELOG: cut the Unreleased entries as 0.1.0 (2026-09-24), merged with the never-tagged "0.1.0 - Initial release" list. - release.yml: build x86_64-apple-darwin on macos-latest. macos-13, the last Intel runner, is retired, so that matrix job could never start and would have blocked the GitHub release and crates.io publish. Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com>
tupe12334
marked this pull request as ready for review
September 24, 2026 10:51
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
Prep for the first published release,
v0.1.0.Cargo.tomlis already at0.1.0, and nothing has been tagged or published before.[Unreleased]entries become[0.1.0] - 2026-09-24, merged with the old[0.1.0] - Initial releaselist, which was never tagged. A fresh, empty[Unreleased]section stays on top.x86_64-apple-darwinnow builds onmacos-latestinstead ofmacos-13.macos-13was GitHub's last Intel macOS runner and is retired. That matrix job could never start, and becausereleaseandpublishdepend on the wholebuildmatrix, a tag would have produced no release at all. The arm64 runner cross-builds Intel; the job already installs the target throughtargets: ${{ matrix.target }}.After this merges, the release is
git tag v0.1.0 && git push origin v0.1.0, which triggers a version check, then the five binary builds, the GitHub release with checksums, andcargo publish.Blocker for the publish job: the repo has no
CARGO_REGISTRY_TOKENsecret (none at repo or org level). It must be set before tagging, or the GitHub release is created and the crates.io publish fails.Test plan
cargo publish --dry-run --lockedpackages 38 files and verifiescargo build --release --locked --target x86_64-apple-darwinon an arm64 Mac produces aMach-O 64-bit executable x86_64🤖 Generated with Claude Code