From 016cf8d34f257725e35190a642eeb5d6c7c3cb96 Mon Sep 17 00:00:00 2001 From: Philip Craig Date: Fri, 4 Oct 2024 17:38:39 +1000 Subject: [PATCH] Release 0.36.5 --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93574193..3c24616a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ -------------------------------------------------------------------------------- +## 0.36.5 + +Released 2024/10/04. + +### Added + +* Added `Architecture::E2K32` and `Architecture::E2K64`. + [#727](https://github.com/gimli-rs/object/pull/727) + +* Added read and write support for `pe::IMAGE_REL_ARM64_BRANCH26`. + [#731](https://github.com/gimli-rs/object/pull/731) + +### Changed + +* Fixed decompression of multi-frame Zstandard data in `read::CompressedData::decompress`. + [#730](https://github.com/gimli-rs/object/pull/730) + +-------------------------------------------------------------------------------- + ## 0.36.4 Released 2024/08/30. diff --git a/Cargo.lock b/Cargo.lock index 4931e56e..d1ca1641 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -231,7 +231,7 @@ dependencies = [ [[package]] name = "object" -version = "0.36.4" +version = "0.36.5" dependencies = [ "compiler_builtins", "crc32fast", diff --git a/Cargo.toml b/Cargo.toml index 81196002..a18b2b1a 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "object" -version = "0.36.4" +version = "0.36.5" edition = "2018" keywords = ["object", "elf", "mach-o", "pe", "coff"] license = "Apache-2.0 OR MIT"