diff --git a/CHANGELOG.md b/CHANGELOG.md index eb4a5250..38fddbfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # FUSE for Rust - Changelog -## 0.11.0 - UNRELEASED +## 0.12.0 - UNRELEASED + +## 0.11.0 - 2022-03-05 +* Add `spawn_mount2()` +* Deprecate `spawn_mount()` ## 0.10.0 - 2022-01-06 * Improve error messages diff --git a/Cargo.lock b/Cargo.lock index 94b26a88..e63d1e7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -95,7 +95,7 @@ dependencies = [ [[package]] name = "fuser" -version = "0.10.0" +version = "0.11.0" dependencies = [ "bincode", "clap", diff --git a/Cargo.toml b/Cargo.toml index 177e0d2d..e80f5e9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fuser" edition = "2018" -version = "0.10.0" +version = "0.11.0" authors = ["Christopher Berner "] description = "Filesystem in Userspace (FUSE) for Rust" documentation = "https://docs.rs/fuser"