From fa4499b087d5f3031fa3582d0ee6db1378d2b7c0 Mon Sep 17 00:00:00 2001 From: Philip Craig Date: Sat, 21 Dec 2024 16:31:30 +1000 Subject: [PATCH] Release 0.36.6 --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c24616a..998afdd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,40 @@ -------------------------------------------------------------------------------- +## 0.36.6 + +Released 2024/10/21. + +### Added + +* Added `Architecuture::M68k`. + [#742](https://github.com/gimli-rs/object/pull/742) + [#749](https://github.com/gimli-rs/object/pull/749) + +* Added `Architecuture::Mips64_N32`. + [#743](https://github.com/gimli-rs/object/pull/743) + +* Added `elf::SHT_RELR`, `read::elf::SectionHeader::relr`, and + `write::elf::Writer::write_relative_relocation_section_header`. + [#746](https://github.com/gimli-rs/object/pull/746) + +* Added `core::error::Error` implementation for Rust 1.81 onwards. + [#747](https://github.com/gimli-rs/object/pull/747) + +### Changed + +* Changed `build::elf::Builder` to support `.annobin.notes`, + `SHT_LLVM_DEPENDENT_LIBRARIES`, and `SHT_RELR` sections. + [#735](https://github.com/gimli-rs/object/pull/735) + [#737](https://github.com/gimli-rs/object/pull/737) + [#746](https://github.com/gimli-rs/object/pull/746) + +* Changed `write::Object::add_subsection` to omit the subsection name suffix + if the subsection name is empty. + [#748](https://github.com/gimli-rs/object/pull/748) + +-------------------------------------------------------------------------------- + ## 0.36.5 Released 2024/10/04. diff --git a/Cargo.lock b/Cargo.lock index 79bbac8f..62cb4953 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -231,7 +231,7 @@ dependencies = [ [[package]] name = "object" -version = "0.36.5" +version = "0.36.6" dependencies = [ "compiler_builtins", "crc32fast", diff --git a/Cargo.toml b/Cargo.toml index b8ccb5bf..a0ede1f0 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "object" -version = "0.36.5" +version = "0.36.6" edition = "2018" keywords = ["object", "elf", "mach-o", "pe", "coff"] license = "Apache-2.0 OR MIT"