Bump crate version to v0.4.0

New Features:
* .note section and segment parsing
* .dynamic section and segment parsing
* .rel and .rela section parsing
* File::section_headers_with_strtab to get both a header iter and strtab concurrently.
  This is useful if you want to iterate over shdrs and get their names at the same time.

Interface changes:
The ReadBytesAt trait was changed to be implemented for an owned CachedReadBytes.
This means that File::open_stream now expects to move-own the CachedReadBytes
as opposed to taking a mutable reference.
This commit is contained in:
Christopher Cole 2022-10-24 14:42:43 -07:00
parent 59f298d54b
commit f44860bfc5
No known key found for this signature in database
GPG Key ID: 0AC856975983E9DB

View File

@ -1,6 +1,6 @@
[package]
name = "elf"
version = "0.3.1"
version = "0.4.0"
authors = ["Christopher Cole <chris.cole.09@gmail.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/cole14/rust-elf/"