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.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ 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.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

[workspace.dependencies]
# KNOWLEDGE-layer format constants + the shared report model (Severity/Observation).
forensicnomicon = "1"
# The native reader, consumed by the forensic analyzer.
sqlite-core = { version = "0.10.3", path = "core" }
sqlite-core = { version = "0.11.0", path = "core" }
# The anomaly auditor, consumed by the sqlite4n6 CLI.
sqlite-forensic = { version = "0.10.3", path = "forensic" }
sqlite-forensic = { version = "0.11.0", path = "forensic" }
# CLI argument parsing.
clap = { version = "4", features = ["derive"] }
# SHA-256 content hashing for recovered BLOBs (RustCrypto — audited, never hand-rolled).
Expand Down
10 changes: 10 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0](https://github.com/SecurityRonin/sqlite-forensic/compare/sqlite-core-v0.10.3...sqlite-core-v0.11.0) - 2026-08-09

### Fixed

- *(test)* acknowledge sqlite3 statements instead of sleeping on them

### Other

- Merge remote-tracking branch 'origin/main' into try/sqlcipher

## [0.10.3](https://github.com/SecurityRonin/sqlite-forensic/compare/sqlite-core-v0.10.2...sqlite-core-v0.10.3) - 2026-07-25

### Fixed
Expand Down
Loading