Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update llvm profparsers #1597

Merged
merged 2 commits into from
Aug 5, 2024
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
From 2019 onwards, all notable changes to tarpaulin will be documented in this
file.

## [Unreleased]
## [0.31.1] 2024-08-05
### Added
- Support for `#[coverage(off)]` to exclude expressions from coverage results
- Updated llvm_profparsers to llvm-19 version

## [0.31.0] 2024-07-22
### Added
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-tarpaulin"
version = "0.31.0"
version = "0.31.1"
authors = ["Daniel McKenna <[email protected]>"]
description = "Cargo-Tarpaulin is a tool to determine code coverage achieved via tests"
repository = "https://github.com/xd009642/tarpaulin"
Expand Down Expand Up @@ -31,7 +31,7 @@ git2 = { version = "0.19", optional = true }
humantime-serde = "1"
indexmap = { version = "~1.8", features = ["serde-1"] }
lazy_static = "1.5"
llvm_profparser = { version = "0.6", default-features = false }
llvm_profparser = { version = "0.7.0", default-features = false }
object = "0.36"
num_cpus = "1.16.0"
proc-macro2 = { version = "1.0", features = ["span-locations"] }
Expand Down
Loading