From af1de6002d20c32a99ec04efbd2abfa41cc9b09c Mon Sep 17 00:00:00 2001 From: Jiang Liu Date: Fri, 13 Jan 2023 14:15:48 +0800 Subject: [PATCH] Prepare for releasing v0.10.1 Prepare for releasing v0.10.1. Signed-off-by: Jiang Liu --- CHAGNELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHAGNELOG.md b/CHAGNELOG.md index 38012204a..230503191 100644 --- a/CHAGNELOG.md +++ b/CHAGNELOG.md @@ -1,6 +1,12 @@ # Changelog ## [Unreleased] +## [0.10.1] + +### Fixed +- [#102](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/102): passthrough: reduce the memory footprint of file handle +- [#103](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/103): vfs: correctly set attr.st_ino for loopup() + ## [0.10.0] ### Added diff --git a/Cargo.toml b/Cargo.toml index e7fb3f7b8..195986b93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuse-backend-rs" -version = "0.10.0" +version = "0.10.1" keywords = ["fuse", "virtio", "virtio-fs", "vhost-user-fs"] categories = ["filesystem", "os::linux-apis"] description = "A rust library for Fuse(filesystem in userspace) servers and virtio-fs devices"