Skip to content

[.gitignore,Cargo.toml,CHANGELOG] Prep for v0.6.0 release #580

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 7, 2025
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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Prerelease] - Unreleased

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

### Fixed
- Prevent openat from trapping on seccomp thread, by making it return EACCES instead by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/573

### Changed
- Remove hypervisor_handler thread by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/533
- Make GuestBinary::Buffer variant take slice instead of owned vec by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/559

### Added
- Add component bindgen macros by @syntactically in https://github.com/hyperlight-dev/hyperlight/pull/376
- Adding ws2025 to the dep_rest matrix by @marosset in https://github.com/hyperlight-dev/hyperlight/pull/551

## [v0.5.1] - 2025-06-02
### Fixed
- Fixed an issue with the `hyperlight_host` not building on v0.5.0
Expand Down
16 changes: 8 additions & 8 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ exclude = [
]

[workspace.package]
version = "0.5.1"
version = "0.6.0"
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.5.1", default-features = false }
hyperlight-host = { path = "src/hyperlight_host", version = "0.5.1", default-features = false }
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.5.1", default-features = false }
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.5.1", default-features = false }
hyperlight-testing = { path = "src/hyperlight_testing", default-features = false }
hyperlight-component-util = { path = "src/hyperlight_component_util" }
hyperlight-component-macro = { path = "src/hyperlight_component_macro" }
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-testing = { path = "src/hyperlight_testing", version = "0.6.0", 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 }

[workspace.lints.rust]
unsafe_op_in_unsafe_fn = "deny"
Expand Down
1 change: 1 addition & 0 deletions src/hyperlight_testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "hyperlight-testing"
version.workspace = true
edition = "2021"

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions src/tests/rust_guests/callbackguest/Cargo.lock

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

6 changes: 3 additions & 3 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.

1 change: 1 addition & 0 deletions src/tests/rust_guests/witguest/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.wasm
10 changes: 5 additions & 5 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.

Loading