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;