Skip to content

Commit 18cae10

Browse files
authored
[.gitignore,Cargo.toml,CHANGELOG] Prep for v0.6.0 release (#580)
Signed-off-by: danbugs <danilochiarlone@gmail.com>
1 parent 3143032 commit 18cae10

File tree

8 files changed

+42
-27
lines changed

8 files changed

+42
-27
lines changed

CHANGELOG.md

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

55
## [Prerelease] - Unreleased
66

7+
## [v0.6.0] - 2025-06-06
8+
9+
### Fixed
10+
- Prevent openat from trapping on seccomp thread, by making it return EACCES instead by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/573
11+
12+
### Changed
13+
- Remove hypervisor_handler thread by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/533
14+
- Make GuestBinary::Buffer variant take slice instead of owned vec by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/559
15+
16+
### Added
17+
- Add component bindgen macros by @syntactically in https://github.com/hyperlight-dev/hyperlight/pull/376
18+
- Adding ws2025 to the dep_rest matrix by @marosset in https://github.com/hyperlight-dev/hyperlight/pull/551
19+
720
## [v0.5.1] - 2025-06-02
821
### Fixed
922
- Fixed an issue with the `hyperlight_host` not building on v0.5.0

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.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ exclude = [
2525
]
2626

2727
[workspace.package]
28-
version = "0.5.1"
28+
version = "0.6.0"
2929
edition = "2024"
3030
rust-version = "1.85"
3131
license = "Apache-2.0"
@@ -34,13 +34,13 @@ repository = "https://github.com/hyperlight-dev/hyperlight"
3434
readme = "README.md"
3535

3636
[workspace.dependencies]
37-
hyperlight-common = { path = "src/hyperlight_common", version = "0.5.1", default-features = false }
38-
hyperlight-host = { path = "src/hyperlight_host", version = "0.5.1", default-features = false }
39-
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.5.1", default-features = false }
40-
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.5.1", default-features = false }
41-
hyperlight-testing = { path = "src/hyperlight_testing", default-features = false }
42-
hyperlight-component-util = { path = "src/hyperlight_component_util" }
43-
hyperlight-component-macro = { path = "src/hyperlight_component_macro" }
37+
hyperlight-common = { path = "src/hyperlight_common", version = "0.6.0", default-features = false }
38+
hyperlight-host = { path = "src/hyperlight_host", version = "0.6.0", default-features = false }
39+
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.6.0", default-features = false }
40+
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.6.0", default-features = false }
41+
hyperlight-testing = { path = "src/hyperlight_testing", version = "0.6.0", default-features = false }
42+
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.6.0", default-features = false }
43+
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.6.0", default-features = false }
4444

4545
[workspace.lints.rust]
4646
unsafe_op_in_unsafe_fn = "deny"

src/hyperlight_testing/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "hyperlight-testing"
3+
version.workspace = true
34
edition = "2021"
45

56
[dependencies]

src/tests/rust_guests/callbackguest/Cargo.lock

Lines changed: 3 additions & 3 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: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.wasm

src/tests/rust_guests/witguest/Cargo.lock

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

0 commit comments

Comments
 (0)