Conversation
Patch release to ship the two fixes that landed after v0.2.0 broke the publish pipeline: - fix(fs): MountableFs::mount now uses Path::has_root, so POSIX-style mount points like /workspace are accepted on Windows (#1492) - fix(http): rustls switched from aws-lc-rs to ring across the workspace; aws-lc-sys is no longer in the dep tree, unblocking the aarch64 manylinux wheel build (#1493) After merge: re-running release.yml will create the v0.2.1 GitHub Release; publish.yml, publish-python.yml, publish-js.yml, and cli-binaries.yml will then publish to crates.io, PyPI, npm, and Homebrew.
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
bashkit | 6259281 | Commit Preview URL Branch Preview URL |
Apr 30 2026, 05:16 PM |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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
Patch release shipping the two fixes that landed after v0.2.0's publish pipeline failed:
fix(fs)—MountableFs::mountnow usesPath::has_rootinstead ofPath::is_absolute, accepting POSIX-style mount points like/workspaceon Windows. v0.2.0'svfs › filesystem external roundtrip mounts into bashfailure on Windows is gone (#1492).fix(http)— Workspace-wide rustls crypto provider switched fromaws-lc-rstoring.aws-lc-sysis no longer in the dep tree, so the aarch64 manylinux wheel cross-build no longer needsAT_HWCAP2from the cross sysroot (#1493).Highlights
/workspace,/data/sub) are accepted byMountableFs::mounton every host. Previously rejected on Windows becausePath::is_absoluterequires a drive prefix there.cargo tree -i aws-lc-sysnow returns "did not match any packages". ring is pure-Rust + asm and builds on every wheel target without depending on the cross-toolchain glibc headers.What's Changed
Full Changelog: v0.2.0...v0.2.1
Test plan
cargo fmt --checkcargo clippy --workspace --all-targets -- -D warningscargo test --workspace(84 suites green, 0 failures)release.ymlcreates GitHub Release and tagv0.2.1publish.ymlpublishesbashkitandbashkit-clito crates.iopublish-python.ymlpublishes wheels to PyPI (especially aarch64 manylinux)publish-js.ymlpublishes@everruns/bashkitto npm (especially Windows tests)cli-binaries.ymlbuilds CLI binaries and updates Homebrew tapGenerated by Claude Code