Releases: dtolnay/anyhow
Releases · dtolnay/anyhow
1.0.15
- Documentation improvements
1.0.14
- Replace compiler version detection with probing the Backtrace api to be more resilient to nightly development of backtrace feature (#24)
1.0.13
- Support building with dev toolchains older than 1.40.0-nightly (#20)
1.0.12
- Improve return type inference when calling
.context(...)
on a Result (#18)
1.0.11
- Fix UB when accessing errors with large alignment (#16, thanks @johnschug)
1.0.10
- Documentation improvements: show example of thiserror's
derive(Error)
1.0.9
- Seal the
Context
trait as it is not intended to be implemented outside of anyhow
1.0.8
- Preserve the source and backtrace of error expressions passed to
anyhow!($expr)
1.0.6
- Preserve source and backtrace when converting from anyhow::Error to Box<dyn std::error::Error + Send + Sync>