From da1e25f33818f73968026e7f740d250caac921ea Mon Sep 17 00:00:00 2001 From: Christopher Cole Date: Sun, 8 Jan 2023 14:28:30 -0800 Subject: [PATCH] Bump crate version to v0.7.1 Bug Fixes: * Fix a divide by zero panic in GnuHashTable.find() for tables with nbloom = 0 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 226d6cd..deb1732 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 8348872..69975a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elf" -version = "0.7.0" +version = "0.7.1" authors = ["Christopher Cole "] license = "MIT/Apache-2.0" repository = "https://github.com/cole14/rust-elf/"