Skip to content

Commit

Permalink
Merge the CHANGELOG + crate version bump for v0.7.3 onto main.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cole14 committed Oct 9, 2023
1 parent fffaa98 commit e37cbef
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.

<!-- next-url -->
[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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elf"
version = "0.7.2"
version = "0.7.3"
authors = ["Christopher Cole <chris.cole.09@gmail.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/cole14/rust-elf/"
Expand Down

0 comments on commit e37cbef

Please sign in to comment.