From 1fa627a9a97f6845b5caaf37cdf4a86cec4e4e3f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 17:08:21 +0000 Subject: [PATCH] chore: release v0.17.2 --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) 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"