diff --git a/CHANGELOG.md b/CHANGELOG.md index bbf9a64a..9a5290a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,35 @@ -------------------------------------------------------------------------------- +## 0.36.1 + +Released 2024/06/29. + +### Added + +* Added `SectionKind::DebugString`. + [#694](https://github.com/gimli-rs/object/pull/694) + +* Added `Architecture::Sparc` and `Architecture::Sparc32Plus`. + [#699](https://github.com/gimli-rs/object/pull/699) + [#700](https://github.com/gimli-rs/object/pull/700) + +* Added more RISC-V ELF relocation constants. + [#701](https://github.com/gimli-rs/object/pull/701) + +### Changed + +* Changed `read::ElfFile::imports` to return the library for versioned symbols. + [#693](https://github.com/gimli-rs/object/pull/693) + +* Changed `read::MachOFile` to support Go's debug section compression. + [#697](https://github.com/gimli-rs/object/pull/697) + +* Reversed the order of Mach-O relocations emitted by `write::Object`. + [#702](https://github.com/gimli-rs/object/pull/702) + +-------------------------------------------------------------------------------- + ## 0.36.0 Released 2024/05/26. diff --git a/Cargo.lock b/Cargo.lock index af5129f1..8be71010 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -243,7 +243,7 @@ dependencies = [ [[package]] name = "object" -version = "0.36.0" +version = "0.36.1" dependencies = [ "compiler_builtins", "crc32fast", diff --git a/Cargo.toml b/Cargo.toml index e193dcd1..0cc6b5dc 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "object" -version = "0.36.0" +version = "0.36.1" edition = "2018" keywords = ["object", "elf", "mach-o", "pe", "coff"] license = "Apache-2.0 OR MIT"