Skip to content

Commit e930c91

Browse files
authored
Release preparation for v0.13.0 (#1284)
Signed-off-by: Doru Blânzeanu <dblnz@pm.me>
1 parent f2d5440 commit e930c91

File tree

6 files changed

+56
-40
lines changed

6 files changed

+56
-40
lines changed

CHANGELOG.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
44

55
## [Prerelease] - Unreleased
66

7+
## [v0.13.0] - 2026-03-06
8+
9+
### Fixed
10+
* fix(windows): prevent WHvDeletePartition race by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/1101
11+
* Fix guest tracing filter by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/977
12+
* Add crashdump example and include snapshot/scratch in core dumps by @jsturtevant in https://github.com/hyperlight-dev/hyperlight/pull/1264
13+
714
### Changed
15+
* Make mem::exe::LoadInfo a struct, instead of an alias by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/1099
16+
* Update snapshots by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/1098
817
* **Breaking:** `GuestFunctionDefinition::new` now takes a typed function pointer instead of `usize` by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/1241
918

19+
### Added
20+
* Enable CoW by @syntactically in https://github.com/hyperlight-dev/hyperlight/pull/1229
21+
22+
### Removed
23+
* Remove host function definition regions by @syntactically in https://github.com/hyperlight-dev/hyperlight/pull/1178
24+
1025
## [v0.12.0] - 2025-12-09
1126

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

241256

242-
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.12.0..HEAD>
243-
[v0.12.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.10.0...v0.12.0>
257+
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.13.0..HEAD>
258+
[v0.13.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.12.0...v0.13.0>
259+
[v0.12.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.11.0...v0.12.0>
244260
[v0.11.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.10.0...v0.11.0>
245261
[v0.10.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.9.0...v0.10.0>
246262
[v0.9.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.8.0...v0.9.0>

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ exclude = [
2727
]
2828

2929
[workspace.package]
30-
version = "0.12.0"
30+
version = "0.13.0"
3131
edition = "2024"
3232
rust-version = "1.89"
3333
license = "Apache-2.0"
@@ -36,15 +36,15 @@ repository = "https://github.com/hyperlight-dev/hyperlight"
3636
readme = "README.md"
3737

3838
[workspace.dependencies]
39-
hyperlight-common = { path = "src/hyperlight_common", version = "0.12.0", default-features = false }
40-
hyperlight-host = { path = "src/hyperlight_host", version = "0.12.0", default-features = false }
41-
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.12.0", default-features = false }
42-
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.12.0", default-features = false }
43-
hyperlight-guest-macro = { path = "src/hyperlight_guest_macro", version = "0.12.0", default-features = false }
39+
hyperlight-common = { path = "src/hyperlight_common", version = "0.13.0", default-features = false }
40+
hyperlight-host = { path = "src/hyperlight_host", version = "0.13.0", default-features = false }
41+
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.13.0", default-features = false }
42+
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.13.0", default-features = false }
43+
hyperlight-guest-macro = { path = "src/hyperlight_guest_macro", version = "0.13.0", default-features = false }
4444
hyperlight-testing = { path = "src/hyperlight_testing", default-features = false }
45-
hyperlight-guest-tracing = { path = "src/hyperlight_guest_tracing", version = "0.12.0", default-features = false }
46-
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.12.0", default-features = false }
47-
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.12.0", default-features = false }
45+
hyperlight-guest-tracing = { path = "src/hyperlight_guest_tracing", version = "0.13.0", default-features = false }
46+
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.13.0", default-features = false }
47+
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.13.0", default-features = false }
4848

4949
[workspace.lints.rust]
5050
unsafe_op_in_unsafe_fn = "deny"

src/tests/rust_guests/dummyguest/Cargo.lock

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

src/tests/rust_guests/simpleguest/Cargo.lock

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

src/tests/rust_guests/witguest/Cargo.lock

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

0 commit comments

Comments
 (0)