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
4 changes: 2 additions & 2 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 @@ -22,7 +22,7 @@ authors = ["Albert Hui <albert@securityronin.com>"]
# lives here too, so a bump touches one line. The reader's deps are hoisted; the
# analyzer (forensic) keeps its own deps inline (different version pins / oracle).
[workspace.dependencies]
ewf = { path = "core", version = "0.4.8" }
ewf = { path = "core", version = "0.4.9" }
flate2 = "1"
# adler-32 over EWF section CRCs (the section-checksum format fact). Already in
# the tree via flate2; declared directly so `ewf::sections` can compute it.
Expand Down
6 changes: 6 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to `ewf` (the reader) are documented here. The format follow
[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.4.9](https://github.com/SecurityRonin/ewf-forensic/compare/ewf-v0.4.8...ewf-v0.4.9) - 2026-08-06

### Fixed

- *(core)* GREEN β€” treat an empty extension as absent; adopt safe-read

## [0.4.8](https://github.com/SecurityRonin/ewf-forensic/compare/ewf-v0.4.7...ewf-v0.4.8) - 2026-08-04

### 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 = "ewf"
version = "0.4.8"
version = "0.4.9"
edition.workspace = true
rust-version.workspace = true
description = "Pure Rust reader for Expert Witness Format (E01/EWF) forensic disk images"
Expand Down
6 changes: 6 additions & 0 deletions forensic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to `ewf-forensic` are documented 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.7.4](https://github.com/SecurityRonin/ewf-forensic/compare/ewf-forensic-v0.7.3...ewf-forensic-v0.7.4) - 2026-08-06

### Fixed

- *(core)* GREEN β€” treat an empty extension as absent; adopt safe-read

## [0.7.3](https://github.com/SecurityRonin/ewf-forensic/compare/ewf-forensic-v0.7.2...ewf-forensic-v0.7.3) - 2026-08-04

### Fixed
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 = "ewf-forensic"
version = "0.7.3"
version = "0.7.4"
edition.workspace = true
rust-version.workspace = true
description = "Forensic integrity analysis and repair for EWF (Expert Witness Format / E01) images"
Expand Down
Loading