From 614451ade5a289c4258c96bda221328f7bfa2816 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 21 Dec 2025 15:42:21 +0000 Subject: [PATCH] chore: release v0.16.2 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46a488126..735fe71cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.2](https://github.com/rust-lang/hashbrown/compare/v0.16.1...v0.16.2) - 2025-12-21 + +### Other + +- Merge pull request #670 from clarfonthey/entry-into-entry +- Improve entry API +- Add hash_table::OccupiedEntry::replace_entry_with to mirror HashMap API +- Override clone_from for HashTable +- Rename raw table buckets to num_buckets + ## [0.16.1](https://github.com/rust-lang/hashbrown/compare/v0.16.0...v0.16.1) - 2025-11-20 ### Added diff --git a/Cargo.toml b/Cargo.toml index faa009581..59c14df55 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hashbrown" -version = "0.16.1" +version = "0.16.2" authors = ["Amanieu d'Antras "] description = "A Rust port of Google's SwissTable hash map" license = "MIT OR Apache-2.0"