Skip to content

Commit d49a6ef

Browse files
authored
Update to version v0.12.0 (#302)
Signed-off-by: Simon Davies <[email protected]> Signed-off-by: James Sturtevant <[email protected]>
1 parent baf49ef commit d49a6ef

File tree

6 files changed

+27
-14
lines changed

6 files changed

+27
-14
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
55

66
## [Prerelease] - Unreleased
77

8+
## [v0.12.0] - 2025-12
9+
10+
### Added
11+
- Added support for poisoned sandboxes. A poisoned sandbox is one that has encountered a fatal error during a previous execution. Once poisoned, any further attempts to use the sandbox will result in an error, preventing undefined behavior. To recover from a poisoned state, a new sandbox instance must be created, or the sandbox must be restored from a previously taken snapshot.
12+
13+
### Fixed
14+
- Fixes Floating Point rounding issue, and uses cargo hyperlight for building wasm_runtime (#166)
15+
16+
### Changed
17+
- Make sure hosts don't need hyperlight-host dependency (#291)
18+
819
## v0.11.0 - 2025-11-20
920
- Add guest tracing support
1021

@@ -22,7 +33,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
2233
The Initial Hyperlight-wasm Release 🎉
2334

2435

25-
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.11.0..HEAD>
36+
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight-wasm/compare/v0.12.0..HEAD>
37+
[v0.12.0]: <https://github.com/hyperlight-dev/hyperlight-wasm/compare/v0.11.0...v0.12.0>
2638
[v0.11.0]: <https://github.com/hyperlight-dev/hyperlight-wasm/compare/v0.10.0...v0.11.0>
2739
[v0.10.0]: <https://github.com/hyperlight-dev/hyperlight-wasm/compare/v0.9.0...v0.10.0>
2840
[v0.9.0]: <https://github.com/hyperlight-dev/hyperlight-wasm/compare/v0.8.0...v0.9.0>

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ exclude = [ "src/wasm_runtime", "src/rust_wasm_samples", "src/hyperlight_wasm_m
44
resolver = "2"
55

66
[workspace.package]
7-
version = "0.11.0"
7+
version = "0.12.0"
88
edition = "2024"
99
rust-version = "1.89"
1010
license = "Apache-2.0"

src/hyperlight_wasm_macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyperlight-wasm-macro"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
edition = "2024"
55
description = """
66
Procedural macros to generate Hyperlight Wasm host and guest bindings from component types

src/wasm_runtime/Cargo.lock

Lines changed: 9 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/wasm_runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-runtime"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
edition = "2021"
55

66
[[bin]]

0 commit comments

Comments
 (0)