diff --git a/CHANGELOG.md b/CHANGELOG.md index ebccf86fc..e5afca31e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ From 2019 onwards, all notable changes to tarpaulin will be documented in this file. +## [0.31.2] 2024-08-20 +### Changed +- Removed debug printout of function map + ## [0.31.1] 2024-08-05 ### Added - Support for `#[coverage(off)]` to exclude expressions from coverage results diff --git a/Cargo.lock b/Cargo.lock index e22f092b6..10b8956c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -179,7 +179,7 @@ dependencies = [ [[package]] name = "cargo-tarpaulin" -version = "0.31.1" +version = "0.31.2" dependencies = [ "cargo_metadata", "cfg-if", @@ -198,7 +198,7 @@ dependencies = [ "llvm_profparser", "nix", "num_cpus", - "object 0.36.2", + "object 0.36.3", "proc-macro2", "procfs", "quick-xml", @@ -1032,9 +1032,9 @@ dependencies = [ [[package]] name = "object" -version = "0.36.2" +version = "0.36.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f203fa8daa7bb185f760ae12bd8e097f63d17041dcdcaf675ac54cdf863170e" +checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9" dependencies = [ "flate2", "memchr", @@ -1398,18 +1398,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.204" +version = "1.0.207" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" +checksum = "5665e14a49a4ea1b91029ba7d3bca9f299e1f7cfa194388ccc20f14743e784f2" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.204" +version = "1.0.207" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" +checksum = "6aea2634c86b0e8ef2cfdc0c340baede54ec27b1e46febd7f80dffb2aa44a00e" dependencies = [ "proc-macro2", "quote", @@ -1418,9 +1418,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.122" +version = "1.0.124" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da" +checksum = "66ad62847a56b3dba58cc891acd13884b9c61138d330c0d7b6181713d4fce38d" dependencies = [ "itoa", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 851cc2e60..31eee9e08 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-tarpaulin" -version = "0.31.1" +version = "0.31.2" authors = ["Daniel McKenna "] description = "Cargo-Tarpaulin is a tool to determine code coverage achieved via tests" repository = "https://github.com/xd009642/tarpaulin" diff --git a/src/traces.rs b/src/traces.rs index d3b9f75c4..20e18b683 100644 --- a/src/traces.rs +++ b/src/traces.rs @@ -169,7 +169,6 @@ impl TraceMap { } pub fn set_functions(&mut self, functions: HashMap>) { - println!("{:?}", functions); self.functions = functions; }