diff --git a/CHANGELOG.md b/CHANGELOG.md index 46a488126..8224486d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,33 @@ 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) - 2026-01-27 + +### Other + +- Move crate::raw::alloc into crate::alloc +- Run cargo doc on CI +- Replace manual rustdoc links with better ones +- MSRV 1.85, edition 2024 +- Run taplo in CI +- :invert isn't used in all cases; just inline it to avoid allowing a lint +- Remove expectations that no longer apply +- Replace allow with expect where possible +- Deny unreachable_pub +- Manually tweak unsafe block additions +- Enable unsafe_op_in_unsafe_fn for 2024 compatibility, clippy fix +- Apparently CI hard-coded 1.80 as a fixed point, now it's just 1.84 +- Clippy fix +- Move lints to Cargo.toml +- taplo fmt +- Update MSRV +- Merge pull request #675 from clarfonthey/unreachable-pub +- 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 e116d894b..eae8c9647 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"