From 4170a3c0c995df27175ebe4d9a1e62db857e8558 Mon Sep 17 00:00:00 2001 From: Philip Craig Date: Wed, 7 Aug 2024 15:04:28 +1000 Subject: [PATCH] Release 0.36.3 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dc9f0b7..f889d5fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,30 @@ -------------------------------------------------------------------------------- +## 0.36.3 + +Released 2024/08/07. + +### Added + +* Added `Iterator` implementations for various types in the low level read API. + [#713](https://github.com/gimli-rs/object/pull/713) + [#714](https://github.com/gimli-rs/object/pull/714) + +### Changed + +* Changed `from_bytes` constructors for integer endian types to `const`. + [#712](https://github.com/gimli-rs/object/pull/712) + +* Changed `next` methods in the low level read API to fuse after returning an + error. + [#714](https://github.com/gimli-rs/object/pull/714) + +* Updated `wasmparser` dependency. + [#715](https://github.com/gimli-rs/object/pull/715) + +-------------------------------------------------------------------------------- + ## 0.36.2 Released 2024/07/24. diff --git a/Cargo.lock b/Cargo.lock index 46b922a0..7167a324 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -243,7 +243,7 @@ dependencies = [ [[package]] name = "object" -version = "0.36.2" +version = "0.36.3" dependencies = [ "compiler_builtins", "crc32fast", diff --git a/Cargo.toml b/Cargo.toml index 2eff8577..27617e5f 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "object" -version = "0.36.2" +version = "0.36.3" edition = "2018" keywords = ["object", "elf", "mach-o", "pe", "coff"] license = "Apache-2.0 OR MIT"