From dd49d55b11a9ab942e8f9296c0f0d94ea97dc173 Mon Sep 17 00:00:00 2001 From: Matt Jackson <1085847+MattJackson@users.noreply.github.com> Date: Tue, 21 Apr 2026 02:16:49 +0000 Subject: [PATCH] v0.11.13: all rip reads use fast timeout, no full recovery in read path --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41a97c8..34264c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.11.13 (2026-04-21) + +### Fix: all rip reads use fast timeout +- Initial batch read changed from full Drive::read() recovery to fast 5s timeout. Binary search starts immediately on failure instead of after 10 minutes of retries. +- Max 15 seconds per bad sector (3 x 5s attempts). Max 23 seconds per batch with 1 bad sector. + ## 0.11.12 (2026-04-21) ### Drive halt + sector events + light recovery diff --git a/Cargo.toml b/Cargo.toml index 3140ee4..27a8d56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfreemkv" -version = "0.11.12" +version = "0.11.13" edition = "2021" rust-version = "1.86" license = "AGPL-3.0-only"