Merge pull request #2722 from peterhuene/update-release-notes

Update RELEASES.md to mention the change to `Engine::new`.
This commit is contained in:
Peter Huene
2021-03-11 16:40:48 -08:00
committed by GitHub

View File

@@ -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<Engine>`. 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