From 8eac102082d0403079080ef981e397693278838c Mon Sep 17 00:00:00 2001 From: Christopher Cole Date: Mon, 9 Oct 2023 11:17:03 -0700 Subject: [PATCH] Bump crate version to v0.7.3 New Features: * Derive Debug on LittleEndian and BigEndian Misc Improvements: * Enable #![forbid(unsafe_code)] * Enable #![deny(missing_debug_implementations)] * Enable #![warn(rust_2018_idioms)] * Fix doc comment on file::Class * Fix README example so it compiles --- CHANGELOG.md | 15 +++++++++++++++ Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f468bd..56babbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) +## [0.7.3] - 2023-10-09 + +### New Features + +- Derive Debug on LittleEndian and BigEndian + +### Misc Improvements + +- Enable #![forbid(unsafe_code)] +- Enable #![deny(missing_debug_implementations)] +- Enable #![warn(rust_2018_idioms)] +- Fix doc comment on file::Class +- Fix README example so it compiles + ## [0.7.2] - 2023-02-15 ### New Features @@ -157,6 +171,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) - Add a `no_std` option by fully moving the parser over to lazy zero-alloc parsing patterns. +[0.7.3]: https://github.com/cole14/rust-elf/compare/v0.7.2...v0.7.3 [0.7.2]: https://github.com/cole14/rust-elf/compare/v0.7.1...v0.7.2 [0.7.1]: https://github.com/cole14/rust-elf/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/cole14/rust-elf/compare/v0.6.1...v0.7.0 diff --git a/Cargo.toml b/Cargo.toml index 076961f..3498460 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elf" -version = "0.7.2" +version = "0.7.3" authors = ["Christopher Cole "] license = "MIT/Apache-2.0" repository = "https://github.com/cole14/rust-elf/"