From f665d18125e3b7eba34e71a3e6d20060a05c41a7 Mon Sep 17 00:00:00 2001 From: Jelte Fennema-Nio Date: Sat, 3 Aug 2024 10:24:13 +0200 Subject: [PATCH] Make anyhow reference a bit less strong --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cf5a92e..c8604697 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,8 @@ to call out, but there are many more changes that are documented below: 2. A greatly improved `Display` derive, which allows you to do anything that `thiserror` provides, but it works for any type not just errors. And by combining the `Display` derive with the `Error` and `From` derives, there - isn't really any need to use `thiserror` anymore. + shouldn't really be any need to use `thiserror` anymore (if you do have such + a need please report an issue). 3. Traits that can return errors now return a type that implements `Error` when an error occurs instead of a `&'static str`.