Skip to content

Commit e188905

Browse files
rbradfordlauralt
authored andcommitted
Release 0.8.0
Signed-off-by: Rob Bradford <robert.bradford@intel.com>
1 parent b1fadea commit e188905

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# v0.8.0
2+
3+
## Added
4+
- Support for specifying VM type (an opaque platform and architecture specific
5+
constant) when creating a VM (`KVM_CREATE_VM` ioctl) via the
6+
`Kvm::create_vm_with_type` function.
7+
8+
## Changed
9+
- Now depends on kvm-bindings >=0.4.0 to support use of a newer vmm-sys-utils
10+
dependency.
11+
112
# v0.7.0
213

314
## Added

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kvm-ioctls"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Amazon Firecracker Team <firecracker-maintainers@amazon.com>"]
55
description = "Safe wrappers over KVM ioctls"
66
repository = "https://github.com/rust-vmm/kvm-ioctls"
@@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"
1010

1111
[dependencies]
1212
libc = ">=0.2.39"
13-
kvm-bindings = { version = "=0.3.0", features = ["fam-wrappers"] }
13+
kvm-bindings = { version = ">=0.4.0", features = ["fam-wrappers"] }
1414
vmm-sys-util = ">=0.8.0"
1515

1616
[dev-dependencies]

0 commit comments

Comments
 (0)