From 108d0d62ef0055e39a9f786cb47854ec337b5493 Mon Sep 17 00:00:00 2001 From: Francesco Vigliaturo Date: Thu, 16 Jun 2022 11:31:41 +0200 Subject: [PATCH] Export UnresolvedReport (#132) * Export UnresolvedReport This let the user the option to get an unsymbolicated report. Useful when the user is not interested in symbolication on the client. Signed-off-by: Francesco Vigliaturo * Updates the CHANGELOG.md Signed-off-by: Francesco Vigliaturo --- CHANGELOG.md | 3 +++ src/lib.rs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10b68860..b3519d0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Remove `backtrace-rs` feature, as the default choice when not specified (#130) +### Fixed +- Export `UnresolvedReport` type to allow developers to get the unresolved report (#132) + ## [0.9.1] - 2022-05-19 ### Fixed diff --git a/src/lib.rs b/src/lib.rs index 2024f654..ed87e566 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -60,7 +60,7 @@ pub use self::collector::{Collector, HashCounter}; pub use self::error::{Error, Result}; pub use self::frames::{Frames, Symbol}; pub use self::profiler::{ProfilerGuard, ProfilerGuardBuilder}; -pub use self::report::{Report, ReportBuilder}; +pub use self::report::{Report, ReportBuilder, UnresolvedReport}; #[cfg(feature = "flamegraph")] pub use inferno::flamegraph;