Bump crate version to v0.5.0

New interfaces:
* Add File::symbol_version_table() interface to get the GNU extension symbol versioning table
* Add Symbol.is_undefined() helper to check if a symbol is defined in this object
* Add File::section_data() which opportunistically parses the CompressionHeader if present

Bug fixes:
* Fix StringTable to return a ParseError on index out of bounds instead of panicking
* Fix File::section_data_as_rels to properly parse Rels (not Relas)
This commit is contained in:
Christopher Cole 2022-10-30 12:35:39 -07:00
parent 7006cb20c3
commit 8771fbbff5
No known key found for this signature in database
GPG Key ID: 0AC856975983E9DB

View File

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