From bd0356b9642dbdc1432ddfefd24088cbd6321a23 Mon Sep 17 00:00:00 2001 From: Sadig Akhund Date: Sun, 13 Sep 2026 15:47:05 +0400 Subject: [PATCH 1/2] release: 0.8.0 Co-Authored-By: Claude Fable 5.1 --- CHANGELOG.md | 2 ++ Cargo.lock | 12 ++++++------ Cargo.toml | 10 +++++----- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6f9cbae..263a45fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ once it reaches a published 0.1.0 release. ## [Unreleased] +## [0.8.0] - 2026-09-13 + ### Changed - `cargo xtask audit contribute` now draws tool names off `PATH` before probing anything, then probes only the drawn sample, instead of freezing and classifying the whole `PATH` first; the submitted verdict file now records the machine and containment posture it was captured under (#102). diff --git a/Cargo.lock b/Cargo.lock index d932b896..d74e11f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -908,7 +908,7 @@ dependencies = [ [[package]] name = "mandible" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "clap", @@ -926,7 +926,7 @@ dependencies = [ [[package]] name = "mandible-core" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "directories", @@ -944,7 +944,7 @@ dependencies = [ [[package]] name = "mandible-extract" -version = "0.7.0" +version = "0.8.0" dependencies = [ "bindgen", "brush-parser", @@ -966,7 +966,7 @@ dependencies = [ [[package]] name = "mandible-search" -version = "0.7.0" +version = "0.8.0" dependencies = [ "mandible-core", "nucleo", @@ -974,7 +974,7 @@ dependencies = [ [[package]] name = "mandible-tui" -version = "0.7.0" +version = "0.8.0" dependencies = [ "arboard", "base64", @@ -2365,7 +2365,7 @@ checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd" [[package]] name = "xtask" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index b612b9f3..203825a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ members = [ strip = "symbols" [workspace.package] -version = "0.7.0" +version = "0.8.0" edition = "2021" rust-version = "1.88" license = "MIT OR Apache-2.0" @@ -32,10 +32,10 @@ authors = ["Sadig Akhund "] # and then failed to resolve the moment the workspace reached 0.2.0. Caught by # a local build; after a tag it would have failed mid-release, with some crates # already published and unpublishable again. -mandible-core = { path = "mandible-core", version = "0.7.0" } -mandible-extract = { path = "mandible-extract", version = "0.7.0" } -mandible-search = { path = "mandible-search", version = "0.7.0" } -mandible-tui = { path = "mandible-tui", version = "0.7.0" } +mandible-core = { path = "mandible-core", version = "0.8.0" } +mandible-extract = { path = "mandible-extract", version = "0.8.0" } +mandible-search = { path = "mandible-search", version = "0.8.0" } +mandible-tui = { path = "mandible-tui", version = "0.8.0" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" From 6679de49e7cac86f98b6f49779012648c03b4826 Mon Sep 17 00:00:00 2001 From: Sadig Akhund Date: Sun, 13 Sep 2026 18:30:34 +0400 Subject: [PATCH 2/2] release: 0.8.0 carries the S-154 fix Co-Authored-By: Claude Fable 5.1 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4bb46e5..5e05ad6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ once it reaches a published 0.1.0 release. ## [Unreleased] -## [0.8.0] - 2026-09-13 +## [0.8.0] - 2026-09-14 ### Changed