8000 Updates for patch release v0.6.1 by jsturtevant · Pull Request #613 · hyperlight-dev/hyperlight · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter < 10BC0 details-menu class="SelectMenu js-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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Prerelease] - Unreleased

## [v0.6.1] - 2025-06-12

### Fixed

- Make OS_PAGE_SIZE public again by @jprendes in https://github.com/hyperlight-dev/hyperlight/pull/609
- Bring back HostFunctionDefinitions Region by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/600
- Allow hyperlight-host to build with x86_64-unknown-linux-musl target by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/601

## [v0.6.0] - 2025-06-06

### Fixed
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

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

[workspace.package]
version = "0.6.0"
version = "0.6.1"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0"
Expand All @@ -34,13 +34,13 @@ repository = "https://github.com/hyperlight-dev/hyperlight"
readme = "README.md"

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

[workspace.lints.rust]
unsafe_op_in_unsafe_fn = "deny"
Expand Down
Loading
0