diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c02dbb5..ede0b58c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ -------------------------------------------------------------------------------- +## 0.34.0 + +Released 2024/03/11. + +### Breaking changes + +* Replaced `macho::DyldSubCacheInfo` with `macho::DyldSubCacheEntryV1`. + Changed the return type of `macho::DyldCacheHeader::subcaches`. + [#642](https://github.com/gimli-rs/object/pull/642) + +### Changed + +* Added `macho::DyldSubCacheEntryV2` and changed `read::macho::DyldCache` + to handle both versions. This is needed for macOS 13 and above. + [#642](https://github.com/gimli-rs/object/pull/642) + +-------------------------------------------------------------------------------- + ## 0.33.0 Released 2024/03/05. diff --git a/Cargo.lock b/Cargo.lock index c60427ba..7bd1daba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -253,7 +253,7 @@ dependencies = [ [[package]] name = "object" -version = "0.33.0" +version = "0.34.0" dependencies = [ "compiler_builtins", "crc32fast", diff --git a/Cargo.toml b/Cargo.toml index d1244f0c..ef7a1596 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "object" -version = "0.33.0" +version = "0.34.0" edition = "2018" keywords = ["object", "elf", "mach-o", "pe", "coff"] license = "Apache-2.0 OR MIT" diff --git a/crates/rewrite/Cargo.toml b/crates/rewrite/Cargo.toml index e7987426..8e8f7d4f 100644 --- a/crates/rewrite/Cargo.toml +++ b/crates/rewrite/Cargo.toml @@ -15,7 +15,7 @@ include = [ features = ['doc'] [dependencies] -object = { version = "0.33.0", default-features = false, features = ["build", "elf"], path = "../.." } +object = { version = "0.34.0", default-features = false, features = ["build", "elf"], path = "../.." } # Dependencies for the cli anyhow = { version = "1.0.79", optional = true }