0.8.0
-
Support glob pattern, versioned name with partial version or
<name>@<version>syntax, and package spec in--package. Previously, only package name and versioned package name with<name>:<full_version>are supported. (#476)This also fixes regression introduced in 0.7.0 where causing packages specified with
--packageare wrongly excluded from report/test when package is specified with the above syntaxes. -
Support glob pattern, versioned name, and package spec in
--exclude. When we tested it previously, Cargo did not support this, but the current version of Cargo does support it. (#476) -
Align the exclusion behavior in reports when cargo-llvm-cov is performed in a sub-crate directory of a workspace or in the root crate of a non-virtual workspace without using
--workspaceor--package, to match the behavior when--workspaceor--packageis used (by default, only show the tested crates). (#476)Compatibility Note: When
--workspaceor--packageis not used, this will exclude other untested workspace members from the report that were previously implicitly included.If you want to test other workspace members, consider using
--workspaceor--package. If you don't want to test other workspace members but still want to include them in the report, consider using--workspaceor--exclude-from-test.