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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ once it reaches a published 0.1.0 release.

## [Unreleased]

## [0.8.0] - 2026-09-14

### 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).
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -32,10 +32,10 @@ authors = ["Sadig Akhund <sadigaxund@gmail.com>"]
# 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"
Expand Down
Loading