Skip to content

Commit

Permalink
Release 0.31.2
Browse files Browse the repository at this point in the history
  • Loading branch information
xd009642 committed Aug 20, 2024
2 parents 537fdbd + 251d6ae commit 558003a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-tarpaulin"
version = "0.31.1"
version = "0.31.2"
authors = ["Daniel McKenna <danielmckenna93@gmail.com>"]
description = "Cargo-Tarpaulin is a tool to determine code coverage achieved via tests"
repository = "https://github.com/xd009642/tarpaulin"
Expand Down
1 change: 0 additions & 1 deletion src/traces.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ impl TraceMap {
}

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

Expand Down

0 comments on commit 558003a

Please sign in to comment.