diff --git a/CHANGELOG.md b/CHANGELOG.md index 87ff4face..ebccf86fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index d87c3cd8f..3af7d4f6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -179,7 +179,7 @@ dependencies = [ [[package]] name = "cargo-tarpaulin" -version = "0.31.0" +version = "0.31.1" dependencies = [ "cargo_metadata", "cfg-if", @@ -857,9 +857,9 @@ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" [[package]] name = "llvm_profparser" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd541091965933763b1b06057086c5cbeff209c99e1af81154564570929a86b8" +checksum = "98658087d4c3f1e03b6fd3474251bbb9353b2470cc0f03d81a46fd39077d0060" dependencies = [ "anyhow", "flate2", diff --git a/Cargo.toml b/Cargo.toml index 54d9e7805..851cc2e60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-tarpaulin" -version = "0.31.0" +version = "0.31.1" authors = ["Daniel McKenna "] description = "Cargo-Tarpaulin is a tool to determine code coverage achieved via tests" repository = "https://github.com/xd009642/tarpaulin" @@ -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"] }