From f6dff60d60d69b8c070bac9d5aaa758c66fb75f4 Mon Sep 17 00:00:00 2001 From: warpmaster <32202890+jared-perry@users.noreply.github.com> Date: Sat, 25 Jul 2026 23:22:51 -0400 Subject: [PATCH] docs: correct crate description schema reference (0.2.3) --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 4 ++-- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5633274..ab8232b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to OffsetScan are documented in this file. The project follows semantic versioning. +## [0.2.3] - 2026-07-21 + +### Documentation + +- Correct the crate description's schema reference. It previously claimed compatibility with + `OffsetInspect.Result`/`ThreatScanResult` — objects produced by `Invoke-OffsetInspect` and + `Invoke-OffsetThreatScan`, which OffsetScan does not emit. It is schema-compatible with the + static-triage output (`Get-OffsetPEInfo`/`Get-OffsetEntropy`/`Get-OffsetString`/`Get-OffsetIOC`). + No code changes. + ## [0.2.2] - 2026-07-21 ### Documentation diff --git a/Cargo.lock b/Cargo.lock index 16c8f1e..3d76258 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -488,7 +488,7 @@ dependencies = [ [[package]] name = "offsetscan" -version = "0.2.2" +version = "0.2.3" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 62fb0b2..a3117cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "offsetscan" -version = "0.2.2" +version = "0.2.3" edition = "2021" authors = ["DreadHost Research"] -description = "Standalone native corpus-scale engine for PE parsing, entropy, string extraction, and IOC panels — schema-compatible with OffsetInspect.Result/ThreatScanResult JSON output." +description = "Standalone native corpus-scale engine for PE parsing, entropy, string extraction, imphash, and IOC panels — JSON schema-compatible with OffsetInspect's static-triage output (Get-OffsetPEInfo/Get-OffsetEntropy/Get-OffsetString/Get-OffsetIOC)." license = "MIT" repository = "https://github.com/warpedatom/OffsetScan" readme = "README.md"