From e8f232e7caf81dc833cb787b81eb3cf157ba4144 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 27 Aug 2026 02:43:44 +0000 Subject: [PATCH] chore: release v0.17.2 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30865f958..ed31fd6a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ 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-08-27 + +### Other + +- Add debug assertion documenting the bucket_mask overflow invariant +- Merge pull request #740 from clarfonthey/cfg_select +- Replace cfg_if! macro with cfg_select! fallback +- fix elidable_lifetime_names lint +- Replace invalid_mut with ptr::without_provenance_mut +- 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 27102c228..46912fbab 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"