From 355a9ce13c2238da8ccd9f63eeca8fa15d067988 Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Mon, 7 Mar 2022 10:41:54 +0100 Subject: [PATCH] Release v0.2.0 This release implements AsRawFd for VringEpollHandler, as well as adds a way for running the vhost-user daemon as a client. Both of these are required by Cloud Hypervisor to rely on the vhost-user-backend crate. Fixes #62 Signed-off-by: Sebastien Boeuf --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbcb4b2..8f06f64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ ### Deprecated -## [v0.1.0] +## v0.2.0 + +### Added + +- Ability to run the daemon as a client +- VringEpollHandler implements AsRawFd + +## v0.1.0 First release diff --git a/Cargo.toml b/Cargo.toml index cfb60c9..7bacf04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vhost-user-backend" -version = "0.1.0" +version = "0.2.0" authors = ["The Cloud Hypervisor Authors"] keywords = ["vhost-user", "virtio"] description = "A framework to build vhost-user backend service daemon"