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"