From ed27ca3ea6f2eb70c9bf877d2ecd06d1d8da3e43 Mon Sep 17 00:00:00 2001 From: Peng Tao Date: Tue, 31 Oct 2023 02:18:46 +0000 Subject: [PATCH] release: prepare for v0.11.0 release Signed-off-by: Peng Tao --- CHAGNELOG.md | 15 +++++++++++++++ Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHAGNELOG.md b/CHAGNELOG.md index 8263b6241..50b0a090a 100644 --- a/CHAGNELOG.md +++ b/CHAGNELOG.md @@ -1,6 +1,21 @@ # Changelog ## [Unreleased] +## [0.11.0] +### Added +- [144](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/144): feat: implement fuse-t feature +- [149](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/149): feat: add "persist" feature +- [152](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/152): Add the ability to clean up the dentry cache can be used to clean up resources when VFS umount. +- [153](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/153): linux_session: Make allow_other mount option optional +- [159](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/159): UID/GID remapping support +- [162](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/162): abi: Disable unsupported flags and functionality on MacOS +- [163](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/163): vfs: add method to export root pseudofs's reference +- [167](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/167): CI: add xfstests for passthrough fs + +### Fixed +- [154](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/154): fuse: Ensure fd has same flags as read/write +- [165](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/165): build: fix a build failure related to conditional compilation + ## [0.10.5] ### Added - [138](https://github.com/cloud-hypervisor/fuse-backend-rs/pull/138): linuxsession: support mount in given mount namespace diff --git a/Cargo.toml b/Cargo.toml index 18469fb47..34eb3d4b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuse-backend-rs" -version = "0.10.5" +version = "0.11.0" 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"