From 51f67bd1c78e252cb534af87648f6e8f3ab5717a Mon Sep 17 00:00:00 2001 From: Andreea Florescu Date: Wed, 18 Mar 2020 13:24:17 +0200 Subject: [PATCH] vm-memory version v0.2.0 - Updated changelog with changes from the last release. - Updated crate version to 0.2.0 Signed-off-by: Andreea Florescu Signed-off-by: Paolo Bonzini --- CHANGELOG.md | 16 ++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fae4036..16f4ca54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ -[v0.1.0] +# [v0.2.0] -# Added +## Added + +- [[#76]](https://github.com/rust-vmm/vm-memory/issues/76): Added `get_slice` and + `as_volatile_slice` to `GuestMemoryRegion`. +- [[#82]](https://github.com/rust-vmm/vm-memory/issues/82): Added `Clone` bound + for `GuestAddressSpace::T`, the return value of `GuestAddressSpace::memory()`. +- [[#88]](https://github.com/rust-vmm/vm-memory/issues/88): Added `as_bytes` for + `ByteValued` which can be used for reading into POD structures from + raw bytes. + +# [v0.1.0] + +## Added - Added traits for working with VM memory. - Added a mmap based implemention for the Guest Memory. diff --git a/Cargo.toml b/Cargo.toml index e62cf7af..71711afe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vm-memory" -version = "0.1.0" +version = "0.2.0" description = "Safe abstractions for accessing the VM physical memory" keywords = ["memory"] authors = ["Liu Jiang "]