From a270102a55bc668c70c170c13886eddb04bd8f89 Mon Sep 17 00:00:00 2001 From: zackees Date: Fri, 26 Jun 2026 20:46:50 -0700 Subject: [PATCH] chore(release): bump 0.7.59 -> 0.7.60 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit What ships in 0.7.60: * soldr#985 — per-phase JSONL trace site in `dispatch_compile_streaming`, gated by `SOLDR_DAEMON_TRACE`. Off by default (one atomic-load per call). Diagnostic-only tooling for the cold-build investigation. * soldr#985 — fix(daemon): avoid nested-runtime panic in `daemon start --foreground` (was hard-blocking the perf matrix cross-build jobs across the #982/#984 regression window). * soldr#986 — vendor: `_vender/zccache` as a git submodule tracking zccache main; soldr's zccache dep flips from `git + rev` to path-dep via the submodule. The merged zccache#941 (per-sub-phase tracing scaffold gated by `ZCCACHE_INNER_TRACE`) lives in this submodule. * soldr#986 — opt-out of zccache audit emission via `AuditMode::Off` to satisfy the new strict-validation contract ("audit sink requires output_root when mode > Off"). soldr's own diagnostic trace lives outside the AuditSink. Per `Release Publishing Rules` in CLAUDE.md: * Cargo.toml + package.json + Cargo.lock all carry 0.7.60 (the only three lockstep version files). * Tag v0.7.60 does NOT yet exist on origin (`git ls-remote --tags origin v0.7.60` 404s). * PyPI `soldr` currently at 0.7.59; 0.7.60 will be a fresh publish. The `release-auto.yml` `detect-bump` job will read [workspace.package].version, diff against the prior commit's value (0.7.59), proceed. Co-Authored-By: Claude Opus 4.7 (1M context) --- Cargo.lock | 2 +- Cargo.toml | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 83354703..c78c456a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3024,7 +3024,7 @@ dependencies = [ [[package]] name = "soldr-cli" -version = "0.7.59" +version = "0.7.60" dependencies = [ "blake3", "clap", diff --git a/Cargo.toml b/Cargo.toml index 086d63be..c3cbebec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ exclude = [ ] [workspace.package] -version = "0.7.59" +version = "0.7.60" edition = "2021" rust-version = "1.94.1" license = "BSD-3-Clause" diff --git a/package.json b/package.json index c743df43..eedb3c26 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@zackees/soldr", - "version": "0.7.59", + "version": "0.7.60", "description": "Instant Rust tools and builds from one command.", "license": "BSD-3-Clause", "homepage": "https://github.com/zackees/soldr",