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"