Releases: dtolnay/anyhow
Releases · dtolnay/anyhow
1.0.93
- Update dev-dependencies to
thiserror
v2
1.0.92
- Support Rust 1.82's
&raw const
and &raw mut
syntax inside ensure!
(#390)
1.0.91
- Ensure OUT_DIR is left with deterministic contents after build script execution (#388)
1.0.90
- Documentation improvements
1.0.89
- Make anyhow::Error's
UnwindSafe
and RefUnwindSafe
impl consistently available between versions of Rust newer and older than 1.72 (#386)
1.0.88
- Documentation improvements
1.0.87
- Support more APIs, including
Error::new
and Error::chain
, in no-std mode on Rust 1.81+ (#383)
1.0.86
- Fix parse error in
ensure!
with non-literal after minus sign (#373)
1.0.85
- Improve
ensure!
macro's rules to unblock some rustc pretty-printer improvements (#368, #371)
1.0.84
- Disallow calling
ensure!
through a Not
impl for a type that is not bool
(#367)