From 7772f02e1aecb001f338ec8d8abc1c5596784f1c Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Fri, 18 Mar 2022 14:11:15 +0100 Subject: [PATCH] Release v0.4.0 This release contains some fixes for the CI as well as the CODEOWNERS file. It fixes the implementation of get_iova_range() for vDPA, and finally it implements its own version of the VhostKernBackend::valid() method for vDPA. Signed-off-by: Sebastien Boeuf --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0ea520..2c7b6f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,16 @@ ### Deprecated +## [v0.4.0] + +### Added +- [[#109]](https://github.com/rust-vmm/vhost/pull/109) vhost_kern: vdpa: Override the implementation of valid() + +### Fixed +- [[#102]](https://github.com/rust-vmm/vhost/pull/102) Fix warnings and update test coverage +- [[#104]](https://github.com/rust-vmm/vhost/pull/104) fix CODEOWNERS file +- [[#107]](https://github.com/rust-vmm/vhost/pull/107) vhost_kern/vdpa: fix get_iova_range() + ## [v0.3.0] ### Added diff --git a/Cargo.toml b/Cargo.toml index 0fac88b..6e1f5f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vhost" -version = "0.3.0" +version = "0.4.0" keywords = ["vhost", "vhost-user", "virtio", "vdpa"] description = "a pure rust library for vdpa, vhost and vhost-user" authors = ["Liu Jiang "]