diff --git a/apfs/CHANGELOG.md b/apfs/CHANGELOG.md index 417c647..0ed5b58 100644 --- a/apfs/CHANGELOG.md +++ b/apfs/CHANGELOG.md @@ -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 diff --git a/apfs/Cargo.toml b/apfs/Cargo.toml index 22656b2..b4eeed5 100644 --- a/apfs/Cargo.toml +++ b/apfs/Cargo.toml @@ -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" diff --git a/dpp-python/CHANGELOG.md b/dpp-python/CHANGELOG.md index cde4d1c..d150e5b 100644 --- a/dpp-python/CHANGELOG.md +++ b/dpp-python/CHANGELOG.md @@ -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 diff --git a/dpp-python/Cargo.toml b/dpp-python/Cargo.toml index f0fad7d..04dbd0b 100644 --- a/dpp-python/Cargo.toml +++ b/dpp-python/Cargo.toml @@ -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" @@ -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"] } diff --git a/dpp-tool/CHANGELOG.md b/dpp-tool/CHANGELOG.md index 8f0d55e..18f2995 100644 --- a/dpp-tool/CHANGELOG.md +++ b/dpp-tool/CHANGELOG.md @@ -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 diff --git a/dpp-tool/Cargo.toml b/dpp-tool/Cargo.toml index c66d93b..83f96ac 100644 --- a/dpp-tool/Cargo.toml +++ b/dpp-tool/Cargo.toml @@ -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" @@ -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" diff --git a/dpp/CHANGELOG.md b/dpp/CHANGELOG.md index 544dc7a..2ee3a57 100644 --- a/dpp/CHANGELOG.md +++ b/dpp/CHANGELOG.md @@ -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 diff --git a/dpp/Cargo.toml b/dpp/Cargo.toml index a711a7e..2283f77 100644 --- a/dpp/Cargo.toml +++ b/dpp/Cargo.toml @@ -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" @@ -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" diff --git a/hfsplus/CHANGELOG.md b/hfsplus/CHANGELOG.md index 61ee3ec..29b52e2 100644 --- a/hfsplus/CHANGELOG.md +++ b/hfsplus/CHANGELOG.md @@ -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 diff --git a/hfsplus/Cargo.toml b/hfsplus/Cargo.toml index e3cd195..0d3fd17 100644 --- a/hfsplus/Cargo.toml +++ b/hfsplus/Cargo.toml @@ -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" diff --git a/pbzx/CHANGELOG.md b/pbzx/CHANGELOG.md index 31fe3fc..37114d0 100644 --- a/pbzx/CHANGELOG.md +++ b/pbzx/CHANGELOG.md @@ -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 diff --git a/pbzx/Cargo.toml b/pbzx/Cargo.toml index a5d3c6c..332b667 100644 --- a/pbzx/Cargo.toml +++ b/pbzx/Cargo.toml @@ -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" diff --git a/udif/CHANGELOG.md b/udif/CHANGELOG.md index f21bdc6..f83410d 100644 --- a/udif/CHANGELOG.md +++ b/udif/CHANGELOG.md @@ -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 diff --git a/udif/Cargo.toml b/udif/Cargo.toml index 8b1e40e..6c7ae6b 100644 --- a/udif/Cargo.toml +++ b/udif/Cargo.toml @@ -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" diff --git a/xara/CHANGELOG.md b/xara/CHANGELOG.md index 6bc5fdb..9c71323 100644 --- a/xara/CHANGELOG.md +++ b/xara/CHANGELOG.md @@ -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 diff --git a/xara/Cargo.toml b/xara/Cargo.toml index d8c3d01..0eb49fe 100644 --- a/xara/Cargo.toml +++ b/xara/Cargo.toml @@ -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"