Skip to content

Commit 558003a

Browse files
committed
Release 0.31.2
2 parents 537fdbd + 251d6ae commit 558003a

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
From 2019 onwards, all notable changes to tarpaulin will be documented in this
44
file.
55

6+
## [0.31.2] 2024-08-20
7+
### Changed
8+
- Removed debug printout of function map
9+
610
## [0.31.1] 2024-08-05
711
### Added
812
- Support for `#[coverage(off)]` to exclude expressions from coverage results

Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-tarpaulin"
3-
version = "0.31.1"
3+
version = "0.31.2"
44
authors = ["Daniel McKenna <[email protected]>"]
55
description = "Cargo-Tarpaulin is a tool to determine code coverage achieved via tests"
66
repository = "https://github.com/xd009642/tarpaulin"

src/traces.rs

-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ impl TraceMap {
169169
}
170170

171171
pub fn set_functions(&mut self, functions: HashMap<PathBuf, Vec<Function>>) {
172-
println!("{:?}", functions);
173172
self.functions = functions;
174173
}
175174

0 commit comments

Comments
 (0)