-
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
63: Release 0.1.0 r=taiki-e a=taiki-e Closes #35 Changes: - [Update clap to fix build error.](#59) - [Support latest version of trybuild.](#54) - [Change output directory of `--html` and `--open` options from `target/llvm-cov` to `target/llvm-cov/html`.](#62) - [You can now merge the coverages generated under different test conditions by using `--no-report` and `--no-run`.](#55) ```sh cargo clean cargo llvm-cov --no-report --features a cargo llvm-cov --no-report --features b cargo llvm-cov --no-run --lcov ``` - [Add environment variables to pass additional flags to llvm-cov/llvm-profdata.](#58) - `CARGO_LLVM_COV_FLAGS` to pass additional flags to llvm-cov. (value: space-separated list) - `CARGO_LLVM_PROFDATA_FLAGS` to pass additional flags to llvm-profdata. (value: space-separated list) - [Fix "Failed to load coverage" error when together used with trybuild.](#49) - [Fix bug in `--exclude` and `--package` options](#56) - [Fix bug in color-detection when both `--text` and `--output-dir` used.](#62) - [`--html` and `--open` options no longer outputs a summary at the same time.](#61) - [Recognize rustflags and rustdocflags set by config file.](#52) - Diagnostic improvements. Co-authored-by: Taiki Endo <[email protected]>
- Loading branch information
Showing
6 changed files
with
38 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-llvm-cov" | ||
version = "0.1.0-alpha.5" | ||
version = "0.1.0" | ||
authors = ["Taiki Endo <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -9,7 +9,7 @@ keywords = ["cargo", "coverage", "subcommand", "testing"] | |
categories = ["command-line-utilities", "development-tools", "development-tools::cargo-plugins", "development-tools::testing"] | ||
exclude = ["/.*", "/tools"] | ||
description = """ | ||
Cargo subcommand for LLVM source-based code coverage (-Z instrument-coverage). | ||
Cargo subcommand to easily use LLVM source-based code coverage (-Z instrument-coverage). | ||
""" | ||
|
||
[package.metadata.docs.rs] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters