Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,18 @@ Unreleased.

### Added

* Added `RecGroupBuilder`, an embedder API for defining recursion groups of Wasm
types, including types that reference themselves or each other (e.g. linked
lists and mutually-recursive structs).
[#10176](https://github.com/bytecodealliance/wasmtime/issues/10176)

### Changed

### Fixed

* Fixed `StorageType::is_val_type` to report whether the storage type is a value
type; it previously returned whether it was an `i16`.

--------------------------------------------------------------------------------

Release notes for previous releases of Wasmtime can be found on the respective
Expand Down
2 changes: 2 additions & 0 deletions crates/wasmtime/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ pub(crate) mod memory;
pub(crate) mod module;
#[cfg(feature = "debug-builtins")]
pub(crate) mod native_debug;
pub(crate) mod rec_group;
pub(crate) mod resources;
pub(crate) mod store;
pub(crate) mod trampoline;
Expand Down Expand Up @@ -97,6 +98,7 @@ pub use limits::*;
pub use linker::*;
pub use memory::*;
pub use module::{Module, ModuleExport, ModuleFunction};
pub use rec_group::*;
pub use resources::*;
#[cfg(all(feature = "async", feature = "call-hook"))]
pub use store::CallHookHandler;
Expand Down
Loading
Loading