Changelog
Generated from CHANGELOG.md in the project repository. Never maintained twice.
0.7.0
29 August 2026
- added
cargo judge deps --why CRATEshows one dependency's source usages, enabled features, dependency kind and resolved graph paths. - added
cargo judge refactor --format jsonincludes a rankednext_actionssummary (top 10), derived from the same candidate ranking as the full list. - changedSource reorganised into
rules/,advisory/andcommands/. Library paths moved fromjudge::Xtojudge::rules::Xandjudge::advisory::X. - removedThe dead
audittool of judge-mcp. - fixed
cargo judge dupes --format jsonno longer truncates the family list to 5. - fixedFour false positives in the slop and structural rules, found by running judge on itself.
0.6.0
29 July 2026
- breakingjudge is now a purely deterministic current-state analyzer. It no longer reads Git history, authorship or churn.
- breakingRemoved
cargo judge distribution,cargo judge provenanceandcargo judge audit --since. Usestructure,slopandcompareinstead; see MIGRATION.md. - breakingBaselines no longer record a commit hash; they are artifact-based JSON snapshots.
- changedThe
gixdependency is gone, so judge works in archives, CI artifacts and vendored code. - changedHTTP lookups against crates.io are compiled only with
--features network.
0.5.2
29 July 2026
- added
structure,complexity,refactor,api,errors,tests,unsafeandslopas focused views of the current project state. - added
cargo judge comparecompares a saved baseline artifact with the current workspace. - addedThe bare
cargo judgereport groups findings by rule with a representative location;--detailskeeps the complete list. - added
cargo judge --format markdownwrites a review-ready summary to.judge/judge.md. - changedTerminal reports use a shared renderer for verdicts, evidence groups, source locations, colour policy and next steps.
0.2.0
29 July 2026
- addedJSON reports are written to
.judge/<command>.jsonby default (--output PATHto override). Every artifact starts with a header and a non-binding triage assessment. - added
mapandimpactexpose workspace and change context for refactoring work. - addedDuplicate-code output includes a prioritised refactoring summary.
0.1.0
16 July 2026
- addedFirst release: Fast Tier with
inspect,healthanddupes.