Skip to content

Commit d5aea38

Browse files
committed
Bump 0.11.0 in preparation for release and update CHANGELOG.md
Signed-off-by: Doru Blânzeanu <[email protected]>
1 parent ab93d7d commit d5aea38

File tree

6 files changed

+53
-31
lines changed

6 files changed

+53
-31
lines changed

CHANGELOG.md

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

55
## [Prerelease] - Unreleased
66

7+
8+
## [v0.11.0] - 2025-11-04
9+
10+
### Fixed
11+
* Fixes a race condition in killing Sandboxes by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/959
12+
13+
### Changed
14+
* Unify register representation across hypervisors by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/907
15+
* Guest tracing improvements to use `tracing` crate by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/844
16+
* Serialize guest trace data using flatbuffers by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/999
17+
18+
### Added
19+
* Add support for mmapped memory in crashdumps and guest debugging by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/943
20+
* Add poison state to sandbox by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/931
21+
* Crashdump on demand by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/972
22+
23+
### Removed
24+
* Remove seccomp by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/971
25+
* Remove mshv2 feature by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/973
26+
27+
728
## [v0.10.0] - 2025-10-02
829

930
### Fixed
@@ -201,7 +222,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
201222
The Initial Hyperlight Release 🎉
202223

203224

204-
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.10.0..HEAD>
225+
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.11.0..HEAD>
226+
[v0.11.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.10.0...v0.11.0>
205227
[v0.10.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.9.0...v0.10.0>
206228
[v0.9.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.8.0...v0.9.0>
207229
[v0.8.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.7.0...v0.8.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
@@ -26,7 +26,7 @@ exclude = [
2626
]
2727

2828
[workspace.package]
29-
version = "0.10.0"
29+
version = "0.11.0"
3030
edition = "2024"
3131
rust-version = "1.88"
3232
license = "Apache-2.0"
@@ -35,14 +35,14 @@ repository = "https://github.com/hyperlight-dev/hyperlight"
3535
readme = "README.md"
3636

3737
[workspace.dependencies]
38-
hyperlight-common = { path = "src/hyperlight_common", version = "0.10.0", default-features = false }
39-
hyperlight-host = { path = "src/hyperlight_host", version = "0.10.0", default-features = false }
40-
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.10.0", default-features = false }
41-
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.10.0", default-features = false }
38+
hyperlight-common = { path = "src/hyperlight_common", version = "0.11.0", default-features = false }
39+
hyperlight-host = { path = "src/hyperlight_host", version = "0.11.0", default-features = false }
40+
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.11.0", default-features = false }
41+
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.11.0", default-features = false }
4242
hyperlight-testing = { path = "src/hyperlight_testing", default-features = false }
43-
hyperlight-guest-tracing = { path = "src/hyperlight_guest_tracing", version = "0.10.0", default-features = false }
44-
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.10.0", default-features = false }
45-
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.10.0", default-features = false }
43+
hyperlight-guest-tracing = { path = "src/hyperlight_guest_tracing", version = "0.11.0", default-features = false }
44+
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.11.0", default-features = false }
45+
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.11.0", default-features = false }
4646

4747
[workspace.lints.rust]
4848
unsafe_op_in_unsafe_fn = "deny"

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

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

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

0 commit comments

Comments
 (0)