From 08c45c651c8c7f4edf1bf42ddec0d6bd83f721c5 Mon Sep 17 00:00:00 2001 From: Philip Craig Date: Wed, 24 Jul 2024 12:54:34 +1000 Subject: [PATCH] Release 0.36.2 --- CHANGELOG.md | 21 +++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a5290a6..7dc9f0b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ -------------------------------------------------------------------------------- +## 0.36.2 + +Released 2024/07/24. + +### Changed + +* Improved writing of GNU symbol versioning in `build::elf::Builder`. + [#705](https://github.com/gimli-rs/object/pull/705) + +* Fixed alignment of `SHT_HASH`/`SHT_GNU_verdef`/`SHT_GNU_verneed` sections in + `write::elf::Writer`. + [#706](https://github.com/gimli-rs/object/pull/706) + +* Fixed writing of GNU hash for absolute symbols in `build::elf::Builder`. + [#707](https://github.com/gimli-rs/object/pull/707) + +* Fixed writing of empty ELF string table in `write::Object`. + [#710](https://github.com/gimli-rs/object/pull/710) + +-------------------------------------------------------------------------------- + ## 0.36.1 Released 2024/06/29. diff --git a/Cargo.lock b/Cargo.lock index 4fefcd61..59e0f8fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -243,7 +243,7 @@ dependencies = [ [[package]] name = "object" -version = "0.36.1" +version = "0.36.2" dependencies = [ "compiler_builtins", "crc32fast", diff --git a/Cargo.toml b/Cargo.toml index 902a51b9..511895b0 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "object" -version = "0.36.1" +version = "0.36.2" edition = "2018" keywords = ["object", "elf", "mach-o", "pe", "coff"] license = "Apache-2.0 OR MIT"