Skip to content

v0.26.0 - 2023-02-11

Compare
Choose a tag to compare
@Robbepop Robbepop released this 11 Feb 21:04
· 248 commits to master since this release
v0.26.0
183acba

Added

  • wasmi CLI: Add WASI support. (#597)
  • Add built-in support for fuel metering. (#653)
    • This allows to control the runtime of Wasm executions in a deterministic fasion
      effectively avoiding the halting problem by charging for executed instructions.
      Not using the feature will not affect the execution efficiency of wasmi for users.
  • Add Pages::checked_sub method. (#660)
  • Add Func::new constructor. (#662)
    • This allows to create Func instances from closures without statically known types.

Changed

  • Update to wasmparser-nostd version 0.100.1. (#666)

Internal

  • Clean up and reorganization of the wasmi_cli crate. (#655)
  • Refactoring of internal host call API. (#664)