From cce1be29b20d70ed39c6da132423501a3a1d6f11 Mon Sep 17 00:00:00 2001 From: Matt Jackson <1085847+MattJackson@users.noreply.github.com> Date: Mon, 20 Apr 2026 15:27:56 +0000 Subject: [PATCH] v0.11.10: skip_errors, read_sectors_recover API --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22b4e47..cc59aaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.11.10 (2026-04-20) + +### Skip errors + clean verify API +- **DiscStream.skip_errors** — when true, zero-fills unreadable sectors and continues instead of aborting. Caller sets based on user preference. +- **read_sectors_recover(recovery: bool)** — single API for recovery vs fast reads. Replaces separate read_sectors_fast method. + ## 0.11.9 (2026-04-20) ### Fast verify reads diff --git a/Cargo.toml b/Cargo.toml index fa1a67b..eb683aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfreemkv" -version = "0.11.9" +version = "0.11.10" edition = "2021" rust-version = "1.86" license = "AGPL-3.0-only"