Skip to content

Commit 83a9d0c

Browse files
committed
chore: prepare v0.13.1 release
Update workspace version and all dependency references to 0.13.1, populate CHANGELOG with changes since v0.13.0, and update footer links. Removes aarch64 feature (not user-ready) but keeps nanvix-unstable features since they are accessible via feature flag. Signed-off-by: danbugs <danilochiarlone@gmail.com>
1 parent d1d170c commit 83a9d0c

3 files changed

Lines changed: 40 additions & 19 deletions

File tree

CHANGELOG.md

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

55
## [Prerelease] - Unreleased
66

7+
## [v0.13.1] - 2026-03-19
8+
9+
### Fixed
10+
* fix: wrong flag passed to get_memory_access_violation on VmExit::MmioRead by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/1295
11+
12+
### Changed
13+
* Move hypervisor/virtual_machine from log to tracing crate by @vshailesh in https://github.com/hyperlight-dev/hyperlight/pull/1276
14+
* refactor: replace init-paging feature with nanvix-unstable by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/1291
15+
16+
### Added
17+
* feat: pass file mapping info via PEB with label support by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/1322
18+
* feat: add hardware interrupt support by @jsturtevant in https://github.com/hyperlight-dev/hyperlight/pull/1272
19+
* Implement map_file_cow so that files can be mapped by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/1320
20+
* Re-export host functions from hyperlight host package by @jsturtevant in https://github.com/hyperlight-dev/hyperlight/pull/1314
21+
* Make map_region public by @jsturtevant in https://github.com/hyperlight-dev/hyperlight/pull/1293
22+
* feat: add GuestCounter behind nanvix-unstable feature flag by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/1270
23+
* feat: use i686 layout for nanvix-unstable guests and make snapshot RWX by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/1271
24+
* Explicitly error out on host-guest version mismatch by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/1252
25+
* docs: improve guest creation documentation by @jsturtevant in https://github.com/hyperlight-dev/hyperlight/pull/1254
26+
727
## [v0.13.0] - 2026-03-06
828

929
### Fixed
@@ -254,7 +274,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
254274
The Initial Hyperlight Release 🎉
255275

256276

257-
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.13.0..HEAD>
277+
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.13.1..HEAD>
278+
[v0.13.1]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.13.0...v0.13.1>
258279
[v0.13.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.12.0...v0.13.0>
259280
[v0.12.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.11.0...v0.12.0>
260281
[v0.11.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.10.0...v0.11.0>

Cargo.lock

Lines changed: 9 additions & 9 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.13.0"
30+
version = "0.13.1"
3131
edition = "2024"
3232
rust-version = "1.89"
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.13.0", default-features = false }
40-
hyperlight-host = { path = "src/hyperlight_host", version = "0.13.0", default-features = false }
41-
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.13.0", default-features = false }
42-
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.13.0", default-features = false }
43-
hyperlight-guest-macro = { path = "src/hyperlight_guest_macro", version = "0.13.0", default-features = false }
39+
hyperlight-common = { path = "src/hyperlight_common", version = "0.13.1", default-features = false }
40+
hyperlight-host = { path = "src/hyperlight_host", version = "0.13.1", default-features = false }
41+
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.13.1", default-features = false }
42+
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.13.1", default-features = false }
43+
hyperlight-guest-macro = { path = "src/hyperlight_guest_macro", version = "0.13.1", default-features = false }
4444
hyperlight-testing = { path = "src/hyperlight_testing", default-features = false }
45-
hyperlight-guest-tracing = { path = "src/hyperlight_guest_tracing", version = "0.13.0", default-features = false }
46-
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.13.0", default-features = false }
47-
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.13.0", default-features = false }
45+
hyperlight-guest-tracing = { path = "src/hyperlight_guest_tracing", version = "0.13.1", default-features = false }
46+
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.13.1", default-features = false }
47+
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.13.1", default-features = false }
4848

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

0 commit comments

Comments
 (0)