From fca92aa7017f6821318d5154d86d013fb31e802e Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Mon, 10 Feb 2020 14:17:09 -0800 Subject: [PATCH 1/2] Remove backtrace header and bump version --- Cargo.toml | 2 +- src/print.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 916bd9b84..24b9ff697 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "backtrace" -version = "0.3.43" +version = "0.3.44" authors = ["The Rust Project Developers"] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/src/print.rs b/src/print.rs index ce26f962e..bee6717af 100644 --- a/src/print.rs +++ b/src/print.rs @@ -57,7 +57,6 @@ impl<'a, 'b> BacktraceFmt<'a, 'b> { /// sumbolicated later, and otherwise this should just be the first method /// you call after creating a `BacktraceFmt`. pub fn add_context(&mut self) -> fmt::Result { - self.fmt.write_str("stack backtrace:\n")?; #[cfg(target_os = "fuchsia")] fuchsia::print_dso_context(self.fmt)?; Ok(()) From b130cf4e1a5849595ff1762d53b7f9ec6308f622 Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Tue, 11 Feb 2020 09:35:00 -0800 Subject: [PATCH 2/2] re-trigger CI