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.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = ["core", "forensic", "cli"]
# Single source of truth for fields shared by every member (DRY): bump version /
# edition / license here once; members inherit via `field.workspace = true`.
[workspace.package]
version = "0.10.1"
version = "0.10.2"
edition = "2021"
license = "Apache-2.0"

Expand All @@ -15,7 +15,7 @@ forensicnomicon = "1"
# The native reader, consumed by the forensic analyzer.
sqlite-core = { version = "0.10.1", path = "core" }
# The anomaly auditor, consumed by the sqlite4n6 CLI.
sqlite-forensic = { version = "0.10.1", path = "forensic" }
sqlite-forensic = { version = "0.10.2", path = "forensic" }
# CLI argument parsing.
clap = { version = "4", features = ["derive"] }
# SHA-256 content hashing for recovered BLOBs (RustCrypto β€” audited, never hand-rolled).
Expand Down
18 changes: 18 additions & 0 deletions forensic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.10.2](https://github.com/SecurityRonin/sqlite-forensic/compare/sqlite-forensic-v0.10.1...sqlite-forensic-v0.10.2) - 2026-07-23

### Added

- *(carve)* GREEN β€” whole-DB SqliteCarver over the forensic-carve contract

### Fixed

- *(deps)* use published forensic-carve 0.1 (was path dep)
# Changelog

All notable changes to `sqlite-forensic` are documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
Expand Down
Loading