Releases: dtolnay/anyhow
Releases · dtolnay/anyhow
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>
1.0.5
- Add
impl From<anyhow::Error> for Box<dyn std::error::Error + Send + Sync + 'static>
(#10)
1.0.4
- Make the Result type alias more flexible (#11, thanks @amesgen)