From 91f5b4a675179cdc81c87d9baa31a4a5d9328f9d Mon Sep 17 00:00:00 2001 From: Micah Date: Tue, 23 Jul 2024 10:42:32 -0700 Subject: [PATCH] Update memofs in 7.4.x branch (#949) Backports the release of memofs v0.3.0 --- Cargo.lock | 2 +- Cargo.toml | 4 ++-- crates/memofs/CHANGELOG.md | 2 ++ crates/memofs/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be2f8270b..8d9a28df3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1073,7 +1073,7 @@ dependencies = [ [[package]] name = "memofs" -version = "0.2.0" +version = "0.3.0" dependencies = [ "crossbeam-channel", "fs-err", diff --git a/Cargo.toml b/Cargo.toml index 0f2014cf0..5ca4bae64 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ name = "build" harness = false [dependencies] -memofs = { version = "0.2.0", path = "crates/memofs" } +memofs = { version = "0.3.0", path = "crates/memofs" } # These dependencies can be uncommented when working on rbx-dom simultaneously # rbx_binary = { path = "../rbx-dom/rbx_binary" } @@ -94,7 +94,7 @@ tracy-client = { version = "0.13.2", optional = true } winreg = "0.10.1" [build-dependencies] -memofs = { version = "0.2.0", path = "crates/memofs" } +memofs = { version = "0.3.0", path = "crates/memofs" } embed-resource = "1.6.4" anyhow = "1.0.44" diff --git a/crates/memofs/CHANGELOG.md b/crates/memofs/CHANGELOG.md index d678f8c9d..44c3aa507 100644 --- a/crates/memofs/CHANGELOG.md +++ b/crates/memofs/CHANGELOG.md @@ -1,6 +1,8 @@ # memofs Changelog ## Unreleased Changes + +## 0.3.0 (2024-03-15) * Changed `StdBackend` file watching component to use minimal recursive watches. [#830] * Added `Vfs::read_to_string` and `Vfs::read_to_string_lf_normalized` [#854] diff --git a/crates/memofs/Cargo.toml b/crates/memofs/Cargo.toml index 5cf5a7334..8089adf39 100644 --- a/crates/memofs/Cargo.toml +++ b/crates/memofs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "memofs" description = "Virtual filesystem with configurable backends." -version = "0.2.0" +version = "0.3.0" authors = ["Lucien Greathouse "] edition = "2018" readme = "README.md"