From ae6076fd1faf0ef4747c0a91bfb608879345cebc Mon Sep 17 00:00:00 2001 From: Christopher Berner Date: Thu, 6 Jan 2022 21:04:25 -0800 Subject: [PATCH] Bump version to 0.10.0 --- CHANGELOG.md | 4 +++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5512c2ae..eb4a5250 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # FUSE for Rust - Changelog -## 0.10.0 - UNRELEASED +## 0.11.0 - UNRELEASED + +## 0.10.0 - 2022-01-06 * Improve error messages * Support compiling with musl * Default `link()` & `symlink()` now return EPERM instead of ENOSYS diff --git a/Cargo.lock b/Cargo.lock index c09d35b5..c6c56e8e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -89,7 +89,7 @@ dependencies = [ [[package]] name = "fuser" -version = "0.9.1" +version = "0.10.0" dependencies = [ "bincode", "clap", diff --git a/Cargo.toml b/Cargo.toml index 51140819..e70eb066 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fuser" edition = "2018" -version = "0.9.1" +version = "0.10.0" authors = ["Christopher Berner "] description = "Filesystem in Userspace (FUSE) for Rust" documentation = "https://docs.rs/fuser"