Skip to content

Commit e37cbef

Browse files
committed
Merge the CHANGELOG + crate version bump for v0.7.3 onto main.
The v0.7.3 release was branched out in order to not include the changes on main to parsed note name representation (&str -> &[u8]) found in d29e996 and a853cb2. That was done in order to not ship breaking API changes in a 0.7.X release, as I want to bundle those into their own 0.8.X once I have a few more changes to warrant the larger bump. And as always, if a friendly human is finding that they want a published crate version with those changes, feel free to reach out with an issue and I'll happily work with you to bundle those changes into a published release.
1 parent fffaa98 commit e37cbef

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55

6+
## [0.7.3] - 2023-10-09
7+
8+
### New Features
9+
10+
- Derive Debug on LittleEndian and BigEndian
11+
12+
### Misc Improvements
13+
14+
- Enable #![forbid(unsafe_code)]
15+
- Enable #![deny(missing_debug_implementations)]
16+
- Enable #![warn(rust_2018_idioms)]
17+
- Fix doc comment on file::Class
18+
- Fix README example so it compiles
19+
620
## [0.7.2] - 2023-02-15
721

822
### New Features
@@ -157,6 +171,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
157171
- Add a `no_std` option by fully moving the parser over to lazy zero-alloc parsing patterns.
158172

159173
<!-- next-url -->
174+
[0.7.3]: https://github.com/cole14/rust-elf/compare/v0.7.2...v0.7.3
160175
[0.7.2]: https://github.com/cole14/rust-elf/compare/v0.7.1...v0.7.2
161176
[0.7.1]: https://github.com/cole14/rust-elf/compare/v0.7.0...v0.7.1
162177
[0.7.0]: https://github.com/cole14/rust-elf/compare/v0.6.1...v0.7.0

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "elf"
3-
version = "0.7.2"
3+
version = "0.7.3"
44
authors = ["Christopher Cole <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/cole14/rust-elf/"

0 commit comments

Comments
 (0)