Skip to content

Commit

Permalink
Update changelog and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Sep 14, 2024
1 parent 7947c5b commit 0ddfca6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com

## [Unreleased]

- Distribute prebuilt binary for x86_64 FreeBSD.

## [0.6.12] - 2024-09-03

- Add `--profraw-only` option to `cargo llvm-cov clean` subcommand. ([#385](https://github.com/taiki-e/cargo-llvm-cov/pull/385), thanks @smoelius)
Expand Down Expand Up @@ -366,7 +368,7 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com

- Fix handling of `RUSTC_WRAPPER`, `RUSTC`, and similar environment variables and configs. ([#180](https://github.com/taiki-e/cargo-llvm-cov/pull/180))

- Distribute prebuilt binaries for aarch64 macOS. ([#179](https://github.com/taiki-e/cargo-llvm-cov/pull/179))
- Distribute prebuilt binaries for AArch64 macOS. ([#179](https://github.com/taiki-e/cargo-llvm-cov/pull/179))

## [0.4.4] - 2022-05-30

Expand Down Expand Up @@ -467,7 +469,7 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com

We will support this again in 0.1.x for compatibility, but will remove it in 0.2.x.

- Distribute prebuilt binaries for aarch64 Linux (gnu and musl).
- Distribute prebuilt binaries for AArch64 Linux (gnu and musl).

## [0.1.15] - 2022-01-06

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -664,13 +664,13 @@ When used with [nextest]:
<!-- omit in toc -->
### Via Homebrew

You can install cargo-llvm-cov from the [Homebrew tap maintained by us](https://github.com/taiki-e/homebrew-tap/blob/HEAD/Formula/cargo-llvm-cov.rb) (x86_64/aarch64 macOS, x86_64/aarch64 Linux):
You can install cargo-llvm-cov from the [Homebrew tap maintained by us](https://github.com/taiki-e/homebrew-tap/blob/HEAD/Formula/cargo-llvm-cov.rb) (x86_64/AArch64 macOS, x86_64/AArch64 Linux):

```sh
brew install taiki-e/tap/cargo-llvm-cov
```

Alternatively, you can install cargo-llvm-cov from [homebrew-core](https://formulae.brew.sh/formula/cargo-llvm-cov) (x86_64/aarch64 macOS, x86_64 Linux):
Alternatively, you can install cargo-llvm-cov from [homebrew-core](https://formulae.brew.sh/formula/cargo-llvm-cov) (x86_64/AArch64 macOS, x86_64 Linux):

```sh
brew install cargo-llvm-cov
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ fn object_files(cx: &Context) -> Result<Vec<OsString>> {
}
}

// This sort is necessary to make the result of `llvm-cov show` match between macos and linux.
// This sort is necessary to make the result of `llvm-cov show` match between macOS and Linux.
files.sort_unstable();

if files.is_empty() {
Expand Down

0 comments on commit 0ddfca6

Please sign in to comment.