Bump crate version to v0.7.1

Bug Fixes:
* Fix a divide by zero panic in GnuHashTable.find() for tables with nbloom = 0
This commit is contained in:
Christopher Cole 2023-01-08 14:28:30 -08:00
parent f45969a2e2
commit da1e25f338
No known key found for this signature in database
GPG Key ID: 0AC856975983E9DB
2 changed files with 7 additions and 1 deletions

View File

@ -3,6 +3,12 @@ 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.1] - 2023-01-08
### Bug Fixes
- Fix a divide by zero panic in GnuHashTable.find() for tables with nbloom = 0
## [0.7.0] - 2022-11-14
### New Features

View File

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