From 8c1366c4c09bb84dfe859e3350849242149e034c Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sun, 16 Aug 2026 00:50:14 +0000 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20bump=20to=200.7.3=20=E2=80=94=20du?= =?UTF-8?q?rability=20fixes=20since=200.7.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ship the four post-0.7.2 snapshot/watch fixes to crates.io: - #13 snapshot load must not drop a durable tail - #14 fsync parent directory after compact rename - #15 refuse watch resume at u64::MAX (no wrap to 0) - #16 mid-file NULs must not drop a CRC-valid suffix Also refresh README install snippets from 0.5 → 0.7. Co-authored-by: Jared Lunde --- Cargo.toml | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ad3c4b3..e9cac05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ rust-version = "1.92" [package] name = "beyond-slipstream" -version = "0.7.2" +version = "0.7.3" edition.workspace = true license.workspace = true rust-version.workspace = true diff --git a/README.md b/README.md index 048a461..08ff794 100644 --- a/README.md +++ b/README.md @@ -40,15 +40,15 @@ For folds that outgrow RAM, `fjall` (pure Rust) and `rocksdb` backends hold stat ```toml [dependencies] -beyond-slipstream = "0.5" +beyond-slipstream = "0.7" ``` On-disk snapshot backends are opt-in cargo features: ```toml -beyond-slipstream = { version = "0.5", features = ["fjall"] } # pure-Rust LSM, no C toolchain -beyond-slipstream = { version = "0.5", features = ["rocksdb"] } # RocksDB (requires C++ toolchain + libclang) -beyond-slipstream = { version = "0.5", features = ["transport"] } # export/import via object_store (S3, GCS, local) +beyond-slipstream = { version = "0.7", features = ["fjall"] } # pure-Rust LSM, no C toolchain +beyond-slipstream = { version = "0.7", features = ["rocksdb"] } # RocksDB (requires C++ toolchain + libclang) +beyond-slipstream = { version = "0.7", features = ["transport"] } # export/import via object_store (S3, GCS, local) ``` ## Concepts From ec76918a4c6bac2a237c9ef97982d041df402601 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sun, 16 Aug 2026 00:50:23 +0000 Subject: [PATCH 2/2] chore: sync Cargo.lock package version to 0.7.3 Co-authored-by: Jared Lunde --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 3181eec..9a62b1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -143,7 +143,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" [[package]] name = "beyond-slipstream" -version = "0.7.2" +version = "0.7.3" dependencies = [ "aho-corasick", "async-nats",