diff --git a/Cargo.lock b/Cargo.lock index 832d68c..c8f50db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -199,7 +199,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "xfs-core" -version = "0.1.5" +version = "0.1.6" dependencies = [ "crc", "forensic-vfs", @@ -209,7 +209,7 @@ dependencies = [ [[package]] name = "xfs-forensic" -version = "0.1.3" +version = "0.1.4" dependencies = [ "forensicnomicon", "sha2", diff --git a/Cargo.toml b/Cargo.toml index c6610ed..2dc2a69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ readme = "README.md" # members write `dep.workspace = true`. The inter-crate `xfs-core` version # lives here too, so a bump touches one line instead of every member. [workspace.dependencies] -xfs-core = { path = "core", version = "0.1.4" } +xfs-core = { path = "core", version = "0.1.6" } forensicnomicon = "1" thiserror = "2" # CRC32c (Castagnoli / iSCSI polynomial) for v5 self-describing metadata. diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 07d7993..fce1dd2 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -5,6 +5,12 @@ here. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.6](https://github.com/SecurityRonin/xfs-forensic/compare/xfs-core-v0.1.5...xfs-core-v0.1.6) - 2026-08-07 + +### Fixed + +- *(docs)* repair intra-doc links the rustdoc gate rejects + ## [0.1.4] ### Fixed diff --git a/core/Cargo.toml b/core/Cargo.toml index 743e223..e56e4ab 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xfs-core" -version = "0.1.5" +version = "0.1.6" edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/forensic/Cargo.toml b/forensic/Cargo.toml index 35e709f..a3b78ef 100644 --- a/forensic/Cargo.toml +++ b/forensic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xfs-forensic" -version = "0.1.3" +version = "0.1.4" edition.workspace = true rust-version.workspace = true license.workspace = true