diff --git a/CHANGELOG.md b/CHANGELOG.md index 30865f958..0adacc2f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.2](https://github.com/rust-lang/hashbrown/compare/v0.17.1...v0.17.2) - 2026-07-06 + +### Other + +- Use wrapping arithmetic in ProbeSeq::move_next to avoid overflow +- Fix provenance lint renaming +- Merge pull request #732 from clarfonthey/default-less +- Reduce reliance on default hasher/allocator +- fix manual_assert_eq lint +- fix manual_assert lint + ## [0.17.1](https://github.com/rust-lang/hashbrown/compare/v0.17.0...v0.17.1) - 2026-04-20 ### Added diff --git a/Cargo.toml b/Cargo.toml index 85d04dc4e..26146b42a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hashbrown" -version = "0.17.1" +version = "0.17.2" description = "A Rust port of Google's SwissTable hash map" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/hashbrown"