Skip to content
Open
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
5 changes: 5 additions & 0 deletions mshv-bindings/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@

### Fixed

## [v0.6.6]

### Changed
* [[292]](https://github.com/rust-vmm/mshv/pull/292) Add more CPU features supported by the Microsoft Hypervisor

## [v0.6.5]

###
Expand Down
2 changes: 1 addition & 1 deletion mshv-bindings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mshv-bindings"
version = "0.6.5"
version = "0.6.6"
authors = ["Microsoft Authors"]
edition = "2021"
license = "Apache-2.0 OR BSD-3-Clause"
Expand Down
8 changes: 7 additions & 1 deletion mshv-ioctls/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@

### Fixed

## [v0.6.6]

### Changed
* [[290]](https://github.com/rust-vmm/mshv/pull/290) mshv-ioctls: use passthrough hvcall to get host partition props
* [[292]](https://github.com/rust-vmm/mshv/pull/292) Add more CPU features supported by the Microsoft Hypervisor

## [v0.6.5]

### Changed
Expand Down Expand Up @@ -90,7 +96,7 @@
## [v0.3.4]

### Added
* [[191]](https://github.com/rust-vmm/mshv/pull/191) Use VP register page to get/set Special and extended registers
* [[191]](https://github.com/rust-vmm/mshv/pull/191) Use VP register page to get/set Special and extended registers

## [v0.3.3]

Expand Down
4 changes: 2 additions & 2 deletions mshv-ioctls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mshv-ioctls"
version = "0.6.5"
version = "0.6.6"
authors = ["Microsoft Authors"]
edition = "2021"
license = "Apache-2.0 OR BSD-3-Clause"
Expand All @@ -11,7 +11,7 @@ description = "Safe wrappers over MSHV ioctl"

[dependencies]
libc = ">=0.2.39"
mshv-bindings = { version = "=0.6.5", path = "../mshv-bindings", features = [
mshv-bindings = { version = "=0.6.6", path = "../mshv-bindings", features = [
"fam-wrappers",
] }
thiserror = "2.0"
Expand Down
Loading