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 @@ -19,7 +19,7 @@ readme = "README.md"
# members write `dep.workspace = true`. The inter-crate `ntfs-core` version
# lives here too, so a bump touches one line instead of every member.
[workspace.dependencies]
ntfs-core = { path = "core", version = "0.9.6" }
ntfs-core = { path = "core", version = "0.9.7" }
forensicnomicon = "1"
thiserror = "2"
lznt1 = "0.1"
Expand Down
15 changes: 15 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ All notable changes to `ntfs-core` (the reader) 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.9.7](https://github.com/SecurityRonin/ntfs-forensic/compare/ntfs-core-v0.9.6...ntfs-core-v0.9.7) - 2026-08-24

### Added

- *(vfs)* surface NTFS reparse-point and ntfs-3g symlinks

### Documentation

- *(vfs)* clarify IntxLNK version-byte handling; tidy

### Fixed

- *(vfs)* bound a decoded symlink target by the caller's cap
- *(vfs)* read a symlink's PathBuffer past Flags, at data + 12

## [0.9.6](https://github.com/SecurityRonin/ntfs-forensic/compare/ntfs-core-v0.9.5...ntfs-core-v0.9.6) - 2026-07-22

### Added
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 = "ntfs-core"
version = "0.9.6"
version = "0.9.7"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
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 = "ntfs-forensic"
version = "0.8.3"
version = "0.8.4"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
Loading