From 69253147389b8a80f726b3c9f9933f718c04738f Mon Sep 17 00:00:00 2001 From: Peter Huene Date: Thu, 11 Mar 2021 14:14:32 -0800 Subject: [PATCH] Update RELEASES.md to mention the change to `Engine::new`. --- RELEASES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/RELEASES.md b/RELEASES.md index 6760671b1e..e141090a6e 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -32,6 +32,11 @@ Not yet released well as more flexible in how it can be used. [#2719](https://github.com/bytecodealliance/wasmtime/pull/2719) +* `Engine::new` has been changed from returning `Engine` to returning + `anyhow::Result`. Callers of `Engine::new` will need to be updated to + use the `?` operator on the return value or otherwise unwrap the result to get + the `Engine`. + ### Fixed * Interepretation of timestamps in `poll_oneoff` for WASI have been fixed to