Skip to content

Commit

Permalink
Release 0.32.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xd009642 committed Mar 12, 2025
2 parents 33ac8eb + 2f4a118 commit e9fbd94
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 16 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.32.3] 2025-03-12
### Changed
- Ignore rlib files in doctest folder

## [0.32.2] 2025-03-04
### Changed
- Now submit git remote information to coveralls and log the report URL as well as better error handling
Expand Down
26 changes: 13 additions & 13 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.32.2"
version = "0.32.3"
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 @@ -55,7 +55,7 @@ walkdir = "2.5.0"
glob = "0.3.2"

[target.'cfg(all(target_os = "linux", any(target_arch = "x86_64", target_arch = "x86")))'.dependencies]
libc = "0.2.170"
libc = "0.2.171"
nix = {version = "0.29.0", default-features = false, features = ["sched", "signal", "ptrace", "personality"]}
procfs = "0.17"

Expand Down
4 changes: 3 additions & 1 deletion src/cargo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,9 @@ fn run_cargo(
.filter(|e| matches!(e.metadata(), Ok(ref m) if m.is_file() && m.len() != 0))
.filter(|e| {
let ext = e.path().extension();
ext != Some(OsStr::new("pdb")) && ext != Some(OsStr::new("rs"))
ext != Some(OsStr::new("pdb"))
&& ext != Some(OsStr::new("rs"))
&& ext != Some(OsStr::new("rlib"))
})
.filter(|e| {
!e.path()
Expand Down

0 comments on commit e9fbd94

Please sign in to comment.