From 085f19077483f7be8c7779e9e9a6d92679b8630b Mon Sep 17 00:00:00 2001 From: Albert Hui Date: Sat, 25 Jul 2026 11:53:56 +0800 Subject: [PATCH] chore: release v0.2.1 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 816f6cb..c4f1eb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.2.1](https://github.com/SecurityRonin/cfb-forensic/compare/cfb-forensic-v0.2.0...cfb-forensic-v0.2.1) - 2026-07-25 + +### Documentation + +- use verbatim Apache-2.0 license text + +### Fixed + +- *(vet)* declare own crates first-party so version bumps don't break supply-chain audit +- *(ci)* restore the coverage and fuzz gates (were never functional) + ## 0.1.0 — 2026-06-13 Initial release. `audit_bytes` carves OLE/CFB ([MS-CFB]) compound files for diff --git a/Cargo.lock b/Cargo.lock index 23a226f..424ef6c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -21,7 +21,7 @@ dependencies = [ [[package]] name = "cfb-forensic" -version = "0.2.0" +version = "0.2.1" dependencies = [ "cfb", "forensicnomicon", diff --git a/Cargo.toml b/Cargo.toml index 7af769f..062e2b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cfb-forensic" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.81" license = "Apache-2.0"