Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 6 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion forensic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading