Skip to content

Commit 7647dce

Browse files
authored
Bump v0.10.0 in preparation for release (#932)
* Bump version to 0.10.0 Signed-off-by: Ludvig Liljenberg <[email protected]> * Update changelog for v0.10.0 Signed-off-by: Ludvig Liljenberg <[email protected]> --------- Signed-off-by: Ludvig Liljenberg <[email protected]>
1 parent 28394fd commit 7647dce

File tree

10 files changed

+70
-56
lines changed

10 files changed

+70
-56
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
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.10.0] - 2025-10-02
8+
9+
### Fixed
10+
11+
- Fix error code conversion for Exception enum TryFrom implementation by @vshailesh in https://github.com/hyperlight-dev/hyperlight/pull/869
12+
- Remove Allocations from Panic Handler by @adamperlin in https://github.com/hyperlight-dev/hyperlight/pull/818
13+
14+
### Changed
15+
16+
- Update rust to 1.89 by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/883
17+
- Update mshv crates for Azure Linux to v0.6.1 (from v0.3.2) by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/891
18+
- Only clear io buffer after unsuccessful guest call by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/811
19+
720
## [v0.9.0] - 2025-08-28
821

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

190203

191-
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.9.0..HEAD>
204+
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.10.0..HEAD>
205+
[v0.10.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.9.0...v0.10.0>
192206
[v0.9.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.8.0...v0.9.0>
193207
[v0.8.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.7.0...v0.8.0>
194208
[v0.7.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.6.1...v0.7.0>

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ exclude = [
2727
]
2828

2929
[workspace.package]
30-
version = "0.9.0"
30+
version = "0.10.0"
3131
edition = "2024"
3232
rust-version = "1.88"
3333
license = "Apache-2.0"
@@ -36,15 +36,15 @@ repository = "https://github.com/hyperlight-dev/hyperlight"
3636
readme = "README.md"
3737

3838
[workspace.dependencies]
39-
hyperlight-common = { path = "src/hyperlight_common", version = "0.9.0", default-features = false }
40-
hyperlight-host = { path = "src/hyperlight_host", version = "0.9.0", default-features = false }
41-
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.9.0", default-features = false }
42-
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.9.0", default-features = false }
39+
hyperlight-common = { path = "src/hyperlight_common", version = "0.10.0", default-features = false }
40+
hyperlight-host = { path = "src/hyperlight_host", version = "0.10.0", default-features = false }
41+
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.10.0", default-features = false }
42+
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.10.0", default-features = false }
4343
hyperlight-testing = { path = "src/hyperlight_testing", default-features = false }
44-
hyperlight-guest-tracing = { path = "src/hyperlight_guest_tracing", version = "0.9.0", default-features = false }
45-
hyperlight-guest-tracing-macro = { path = "src/hyperlight_guest_tracing_macro", version = "0.9.0", default-features = false }
46-
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.9.0", default-features = false }
47-
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.9.0", default-features = false }
44+
hyperlight-guest-tracing = { path = "src/hyperlight_guest_tracing", version = "0.10.0", default-features = false }
45+
hyperlight-guest-tracing-macro = { path = "src/hyperlight_guest_tracing_macro", version = "0.10.0", default-features = false }
46+
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.10.0", default-features = false }
47+
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.10.0", default-features = false }
4848

4949
[workspace.lints.rust]
5050
unsafe_op_in_unsafe_fn = "deny"

src/tests/rust_guests/dummyguest/Cargo.lock

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

src/tests/rust_guests/dummyguest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dummyguest"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55

66

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

src/tests/rust_guests/simpleguest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simpleguest"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)