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: 6 additions & 0 deletions apfs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [0.2.4] - 2026-04-12

### Changed

- Include `LICENSE` file in the published crate

## [0.2.3] - 2026-02-21

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion apfs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apfs"
version = "0.2.3"
version = "0.2.4"
edition = "2024"
description = "Read-only APFS (Apple File System) parser"
license = "MIT"
Expand Down
7 changes: 7 additions & 0 deletions dpp-python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [0.2.1] - 2026-04-12

### Changed

- Include `LICENSE` file in the published wheel
- Bumped dpp dependency to 0.4.2

## [0.2.0] - 2026-02-18

### Added
Expand Down
4 changes: 2 additions & 2 deletions dpp-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dpp-python"
version = "0.2.0"
version = "0.2.1"
edition = "2024"
license = "MIT"
description = "Python bindings for the dpp Apple disk image and package toolkit"
Expand All @@ -10,5 +10,5 @@ name = "dpp"
crate-type = ["cdylib"]

[dependencies]
dpp = { version = "0.4.1", path = "../dpp", features = ["parallel"] }
dpp = { version = "0.4.2", path = "../dpp", features = ["parallel"] }
pyo3 = { version = "0.28.1", features = ["extension-module"] }
7 changes: 7 additions & 0 deletions dpp-tool/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [0.5.3] - 2026-04-12

### Changed

- Include `LICENSE` file in the published crate
- Bumped workspace dependencies (dpp 0.4.2, udif 0.3.4, hfsplus 0.2.4, apfs 0.2.4, xara 0.3.2, pbzx 0.3.1)

## [0.5.2] - 2026-02-21

### Fixed
Expand Down
14 changes: 7 additions & 7 deletions dpp-tool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dpp-tool"
version = "0.5.2"
version = "0.5.3"
edition = "2024"
description = "CLI to explore Apple DMG disk images: DMG → HFS+/APFS → PKG → PBZX → files"
license = "MIT"
Expand All @@ -11,12 +11,12 @@ name = "dpp-tool"
path = "src/main.rs"

[dependencies]
dpp = { version = "0.4.1", path = "../dpp" }
udif = { version = "0.3.3", path = "../udif" }
hfsplus = { version = "0.2.3", path = "../hfsplus" }
apfs = { version = "0.2.3", path = "../apfs" }
xara = { version = "0.3.1", path = "../xara" }
pbzx = { version = "0.3.0", path = "../pbzx" }
dpp = { version = "0.4.2", path = "../dpp" }
udif = { version = "0.3.4", path = "../udif" }
hfsplus = { version = "0.2.4", path = "../hfsplus" }
apfs = { version = "0.2.4", path = "../apfs" }
xara = { version = "0.3.2", path = "../xara" }
pbzx = { version = "0.3.1", path = "../pbzx" }
clap = { version = "4", features = ["derive"] }
clap_complete = "4"

Expand Down
7 changes: 7 additions & 0 deletions dpp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [0.4.2] - 2026-04-12

### Changed

- Include `LICENSE` file in the published crate
- Bumped udif to 0.3.4, pbzx to 0.3.1, hfsplus to 0.2.4, apfs to 0.2.4, xara to 0.3.2

## [0.4.1] - 2026-02-21

### Fixed
Expand Down
12 changes: 6 additions & 6 deletions dpp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dpp"
version = "0.4.1"
version = "0.4.2"
edition = "2024"
description = "DMG + HFS+/APFS + PKG + PBZX pipeline - walk through Apple disk images to extract packages"
license = "MIT"
Expand All @@ -9,11 +9,11 @@ keywords = ["dmg", "apple", "macos", "pkg", "filesystem"]
categories = ["compression", "encoding", "parsing"]

[dependencies]
udif = { version = "0.3.3", path = "../udif" }
pbzx = { version = "0.3.0", path = "../pbzx" }
hfsplus = { version = "0.2.3", path = "../hfsplus" }
apfs = { version = "0.2.3", path = "../apfs" }
xara = { version = "0.3.1", path = "../xara" }
udif = { version = "0.3.4", path = "../udif" }
pbzx = { version = "0.3.1", path = "../pbzx" }
hfsplus = { version = "0.2.4", path = "../hfsplus" }
apfs = { version = "0.2.4", path = "../apfs" }
xara = { version = "0.3.2", path = "../xara" }
thiserror = "2"
tempfile = "3"

Expand Down
6 changes: 6 additions & 0 deletions hfsplus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [0.2.4] - 2026-04-12

### Changed

- Include `LICENSE` file in the published crate

## [0.2.3] - 2026-02-21

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion hfsplus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hfsplus"
version = "0.2.3"
version = "0.2.4"
edition = "2024"
description = "Read-only HFS+ / HFSX filesystem parser"
license = "MIT"
Expand Down
6 changes: 6 additions & 0 deletions pbzx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [0.3.1] - 2026-04-12

### Changed

- Include `LICENSE` file in the published crate

## [0.3.0] - 2026-02-18

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pbzx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pbzx"
version = "0.3.0"
version = "0.3.1"
edition = "2024"
description = "A Rust library for parsing, extracting, and creating PBZX archives (Apple's payload format)"
license = "MIT"
Expand Down
6 changes: 6 additions & 0 deletions udif/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [0.3.4] - 2026-04-12

### Changed

- Include `LICENSE` file in the published crate

## [0.3.3] - 2026-02-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion udif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "udif"
version = "0.3.3"
version = "0.3.4"
edition = "2024"
description = "cross-platform Apple disk image (aka DMG, UDIF) library"
license = "MIT"
Expand Down
6 changes: 6 additions & 0 deletions xara/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [0.3.2] - 2026-04-12

### Changed

- Include `LICENSE` file in the published crate

## [0.3.1] - 2026-02-21

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion xara/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xara"
version = "0.3.1"
version = "0.3.2"
edition = "2024"
description = "Read-only XAR archive and macOS PKG package parser"
license = "MIT"
Expand Down
Loading