From 935696f59a9038c2e74fd344ae9f05b15609624a Mon Sep 17 00:00:00 2001 From: Albert Hui Date: Fri, 7 Aug 2026 16:08:30 +0800 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- core/CHANGELOG.md | 6 ++++++ core/Cargo.toml | 2 +- forensic/Cargo.toml | 2 +- 6 files changed, 13 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 22c3e40..3283f6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -463,7 +463,7 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "vhdx-cli" -version = "0.1.1" +version = "0.1.2" dependencies = [ "clap", "vhdx-core", @@ -471,7 +471,7 @@ dependencies = [ [[package]] name = "vhdx-core" -version = "0.4.0" +version = "0.4.1" dependencies = [ "forensic-testgate", "forensic-vfs", @@ -481,7 +481,7 @@ dependencies = [ [[package]] name = "vhdx-forensic" -version = "0.3.1" +version = "0.3.2" dependencies = [ "forensicnomicon", "tempfile", diff --git a/Cargo.toml b/Cargo.toml index 7257558..3e82621 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ repository = "https://github.com/SecurityRonin/vhdx-forensic" # members write `dep.workspace = true`. The inter-crate `vhdx` version lives here # too (requirement unchanged at 0.2.0), so a bump touches one line. [workspace.dependencies] -vhdx = { path = "core", version = "0.4.0", package = "vhdx-core" } +vhdx = { path = "core", version = "0.4.1", package = "vhdx-core" } thiserror = "2" forensicnomicon = "1" clap = { version = "4", features = ["derive"] } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 0893531..d2213e6 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vhdx-cli" -version = "0.1.1" +version = "0.1.2" edition.workspace = true rust-version.workspace = true description = "CLI tool for inspecting VHDX disk images" diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index b76fb12..8b05261 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/SecurityRonin/vhdx-forensic/compare/vhdx-core-v0.4.0...vhdx-core-v0.4.1) - 2026-08-07 + +### Fixed + +- *(docs)* repair intra-doc links the rustdoc gate rejects + ## [0.4.0](https://github.com/SecurityRonin/vhdx-forensic/compare/vhdx-core-v0.3.1...vhdx-core-v0.4.0) - 2026-08-05 ### Fixed diff --git a/core/Cargo.toml b/core/Cargo.toml index 765968e..7418afc 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vhdx-core" -version = "0.4.0" +version = "0.4.1" edition.workspace = true rust-version.workspace = true description = "Pure-Rust VHDX (Hyper-V) virtual-disk container library — reader (writer planned), hardened for forensic use" diff --git a/forensic/Cargo.toml b/forensic/Cargo.toml index 297c7d4..5de41ad 100644 --- a/forensic/Cargo.toml +++ b/forensic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vhdx-forensic" -version = "0.3.1" +version = "0.3.2" edition.workspace = true rust-version.workspace = true description = "Forensic integrity analyzer for VHDX (Hyper-V) virtual disks — tamper/anomaly findings and in-memory repair, built on vhdx-core"