Skip to content

Commit a647308

Browse files
committed
Prepare for v0.5.0 release
Signed-off-by: James Sturtevant <[email protected]>
1 parent 8b38958 commit a647308

File tree

5 files changed

+43
-12
lines changed

5 files changed

+43
-12
lines changed

CHANGELOG.md

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

55
## [Prerelease] - Unreleased
66

7+
## [v0.5.0] - 2025-05-28
8+
9+
### Changed
10+
* Change base address from 0x200_000 to 0x0 by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/450
11+
* Unify HostFunctionXX traits into a single HostFunction by @jprendes in https://github.com/hyperlight-dev/hyperlight/pull/
12+
* Improve the ergonomics of registering host functions by @jprendes in https://github.com/hyperlight-dev/hyperlight/pull/468
13+
* Remove generics from SupportedParameterType and SupportedReturnType traits by @jprendes in https://github.com/hyperlight-dev/hyperlight/pull/475
14+
* Improve ergonomics of SupportedParameterType and SupportedReturnType by @jprendes in https://github.com/hyperlight-dev/hyperlight/pull/476
15+
* Remove `host_print_writer` from the arguments to `UninitializedSandbox::new` by @jprendes in https://github.com/hyperlight-dev/hyperlight/pull/487
16+
17+
### Fixed
18+
* Add error logging when MapViewOfFileNuma2 fails by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/460
19+
* Make common and guest libs portable by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/524
20+
* Fix breaking changes for hyperlight js by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/531
21+
22+
### Added
23+
* Gdb debug improvements by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/456
24+
25+
### Removed
26+
* Remove kernel stack and boot stack memory regions by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/451
27+
* Removing HostFunctionDefinitions region by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/453
28+
* Removed host error region by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/457
29+
* Remove dependency on the paste crate by @jprendes in https://github.com/hyperlight-dev/hyperlight/pull/467
30+
* Remove support from hyperlight_host for PE formatted guests by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/485
31+
* Remove in process mode from hyperlight-host by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/490
32+
33+
## New Contributors
34+
* @Dylan-Gallagher made their first contribution in https://github.com/hyperlight-dev/hyperlight/pull/439
35+
* @qbradley made their first contribution in https://github.com/hyperlight-dev/hyperlight/pull/514
36+
37+
**Full Changelog**: https://github.com/hyperlight-dev/hyperlight/compare/v0.4.0...v0.5.0
738

839
## [v0.4.0] - 2025-04-30
940

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ exclude = [
2121
]
2222

2323
[workspace.package]
24-
version = "0.4.0"
24+
version = "0.5.0"
2525
edition = "2021"
2626
rust-version = "1.81.0"
2727
license = "Apache-2.0"
@@ -30,9 +30,9 @@ repository = "https://github.com/hyperlight-dev/hyperlight"
3030
readme = "README.md"
3131

3232
[workspace.dependencies]
33-
hyperlight-common = { path = "src/hyperlight_common", version = "0.4.0", default-features = false }
34-
hyperlight-host = { path = "src/hyperlight_host", version = "0.4.0", default-features = false }
35-
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.4.0", default-features = false }
33+
hyperlight-common = { path = "src/hyperlight_common", version = "0.5.0", default-features = false }
34+
hyperlight-host = { path = "src/hyperlight_host", version = "0.5.0", default-features = false }
35+
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.5.0", default-features = false }
3636
hyperlight-testing = { path = "src/hyperlight_testing", default-features = false }
3737

3838
[workspace.lints.rust]

src/tests/rust_guests/callbackguest/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.

src/tests/rust_guests/simpleguest/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.

0 commit comments

Comments
 (0)