Skip to content
Merged
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
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Prerelease] - Unreleased

## [v0.13.0] - 2026-03-06

### Fixed
* fix(windows): prevent WHvDeletePartition race by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/1101
* Fix guest tracing filter by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/977
* Add crashdump example and include snapshot/scratch in core dumps by @jsturtevant in https://github.com/hyperlight-dev/hyperlight/pull/1264

### Changed
* Make mem::exe::LoadInfo a struct, instead of an alias by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/1099
* Update snapshots by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/1098
* **Breaking:** `GuestFunctionDefinition::new` now takes a typed function pointer instead of `usize` by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/1241

### Added
* Enable CoW by @syntactically in https://github.com/hyperlight-dev/hyperlight/pull/1229

### Removed
* Remove host function definition regions by @syntactically in https://github.com/hyperlight-dev/hyperlight/pull/1178

## [v0.12.0] - 2025-12-09

### Fixed
Expand Down Expand Up @@ -239,8 +254,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
The Initial Hyperlight Release 🎉


[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.12.0..HEAD>
[v0.12.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.10.0...v0.12.0>
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.13.0..HEAD>
[v0.13.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.12.0...v0.13.0>
[v0.12.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.11.0...v0.12.0>
[v0.11.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.10.0...v0.11.0>
[v0.10.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.9.0...v0.10.0>
[v0.9.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.8.0...v0.9.0>
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exclude = [
]

[workspace.package]
version = "0.12.0"
version = "0.13.0"
edition = "2024"
rust-version = "1.89"
license = "Apache-2.0"
Expand All @@ -36,15 +36,15 @@ repository = "https://github.com/hyperlight-dev/hyperlight"
readme = "README.md"

[workspace.dependencies]
hyperlight-common = { path = "src/hyperlight_common", version = "0.12.0", default-features = false }
hyperlight-host = { path = "src/hyperlight_host", version = "0.12.0", default-features = false }
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.12.0", default-features = false }
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.12.0", default-features = false }
hyperlight-guest-macro = { path = "src/hyperlight_guest_macro", version = "0.12.0", default-features = false }
hyperlight-common = { path = "src/hyperlight_common", version = "0.13.0", default-features = false }
hyperlight-host = { path = "src/hyperlight_host", version = "0.13.0", default-features = false }
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.13.0", default-features = false }
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.13.0", default-features = false }
hyperlight-guest-macro = { path = "src/hyperlight_guest_macro", version = "0.13.0", default-features = false }
hyperlight-testing = { path = "src/hyperlight_testing", default-features = false }
hyperlight-guest-tracing = { path = "src/hyperlight_guest_tracing", version = "0.12.0", default-features = false }
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.12.0", default-features = false }
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.12.0", default-features = false }
hyperlight-guest-tracing = { path = "src/hyperlight_guest_tracing", version = "0.13.0", default-features = false }
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.13.0", default-features = false }
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.13.0", default-features = false }

[workspace.lints.rust]
unsafe_op_in_unsafe_fn = "deny"
Expand Down
12 changes: 6 additions & 6 deletions src/tests/rust_guests/dummyguest/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions src/tests/rust_guests/simpleguest/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions src/tests/rust_guests/witguest/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.