Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ L1 zigbuild) now ✅; §8 acceptance items all checked.
into a red required check rather than the documented advisory
warning.

## [0.5.90] - 2026-04-25
## [0.5.91] - 2026-04-25

### Fixed
- **macOS arm64 release binaries SIGKILLed at launch** under macOS 26+
Expand Down
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ members = [
# Workspace Package Metadata (inherited by all crates)
# ─────────────────────────────────────────────────────────────────────────────
[workspace.package]
version = "0.5.90"
version = "0.5.91"
edition = "2024"
# MSRV: Pure Rust code compiles on stable 1.91+ (Duration::from_mins),
# but Polars is built with features = ["nightly", "simd"] which requires
Expand Down Expand Up @@ -96,14 +96,14 @@ categories = ["filesystem", "command-line-utilities"]
# proposed-plan output for 12 days because `release-plz update`
# failed at `cargo package` with this very error. See
# `release-automation-baseline.md` §10 for the diagnostic trail.
uffs-polars = { path = "crates/uffs-polars", version = "0.5.90" }
uffs-security = { path = "crates/uffs-security", version = "0.5.90" }
uffs-text = { path = "crates/uffs-text", version = "0.5.90" }
uffs-time = { path = "crates/uffs-time", version = "0.5.90" }
uffs-mft = { path = "crates/uffs-mft", version = "0.5.90", features = ["zstd"] }
uffs-format = { path = "crates/uffs-format", version = "0.5.90" }
uffs-core = { path = "crates/uffs-core", version = "0.5.90" }
uffs-client = { path = "crates/uffs-client", version = "0.5.90" }
uffs-polars = { path = "crates/uffs-polars", version = "0.5.91" }
uffs-security = { path = "crates/uffs-security", version = "0.5.91" }
uffs-text = { path = "crates/uffs-text", version = "0.5.91" }
uffs-time = { path = "crates/uffs-time", version = "0.5.91" }
uffs-mft = { path = "crates/uffs-mft", version = "0.5.91", features = ["zstd"] }
uffs-format = { path = "crates/uffs-format", version = "0.5.91" }
uffs-core = { path = "crates/uffs-core", version = "0.5.91" }
uffs-client = { path = "crates/uffs-client", version = "0.5.91" }
# NOTE: no `uffs-diag` workspace dependency alias on purpose.
# It is a top-level diagnostic/tool crate, not a shared runtime dependency.

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# CI pipeline will auto-refresh on `ship --fresh` unless `--skip-toolchain-sync`
# is passed — use that flag (or plain `just ship`) while the upstream regression
# persists.
channel = "nightly-2026-05-05"
channel = "nightly-2026-05-08"

# Specify components that should always be available
components = [
Expand Down
Loading