Merged
Conversation
Add explicit "verify-can-publish" step before opening a release PR (cargo publish --dry-run, version-sync across manifests, registry version comparison) and a "monitor post-merge publishing" step that watches each registry until the new version is live. Captures the v0.4.0 -> v0.4.1 lesson: local cargo build is not enough, cargo publish must be dry-run before tagging.
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
bashkit | d04afbf | Commit Preview URL Branch Preview URL |
May 06 2026, 12:28 AM |
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.
Minor release
0.4.1→0.5.0. Two new builtins (shuf,truncate), a coreutils-codegen pipeline that ports uutils'uu_app()clap definitions forcat/tac/truncate/shuf/readlink, andtool_defflag-syntax improvements.Highlights
uu_app()clap definitions into bashkit so builtins share the real coreutils argument shape;cat,tac,truncate,shuf, andreadlinknow flow through this surface, with a coreutils differential testing harness to catch parity drift. Pipeline reads a single pinned uutils revision so generated builtins, the differential harness, and CI all agree on the upstream source of truth (feat(builtins): port uutils argument surfaces via codegen (POC: cat, tac) #1529, test(builtins): add coreutils differential testing harness #1535, feat(builtins): add truncate via codegen-ported argument surface #1536, chore(builtins): pin uutils revision as single source of truth #1537, feat(builtins): add shuf via codegen with helper-fn inlining #1538, refactor(builtins): migrate readlink to codegen-ported argument surface #1542).What's Changed
Publish-readiness report
Per the updated
specs/release-process.md:cargo fmt --checkcleancargo clippy --all-targets --all-features -- -D warningscleancargo buildcleanCargo.toml,crates/bashkit-cli/Cargo.toml,crates/bashkit-js/package.json,package-lock.json,Cargo.lockcargo publish --dry-run -p bashkit --allow-dirty(after CI's monty-strip): successcargo publish --dry-run -p bashkit-cli: blocked only on ordering (bashkit 0.5.0not yet on crates.io) — resolves at real publish time whenpublish-bashkitruns first perpublish.yml'sneeds:chain.0.5.0> latest published versions on crates.io / PyPI / npm (0.4.1).Companion change
This branch also includes
chore(specs): document publish verification and post-merge monitoring, codifying the verify-before-tag and watch-after-merge flow that this release follows.On merge,
release.ymlwill create the GitHub Releasev0.5.0and dispatch publish workflows for crates.io, PyPI, npm, and Homebrew.Full Changelog: v0.4.1...v0.5.0
Generated by Claude Code