From 007bf60e1afdf96bc804123eace05b9ff8768224 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 9 Nov 2025 12:10:55 +0000 Subject: [PATCH] chore: release v0.16.1 --- CHANGELOG.md | 25 +++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fef4caf7..1d49e9c0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.1](https://github.com/rust-lang/hashbrown/compare/v0.16.0...v0.16.1) - 2025-11-09 + +### Added + +- recognize and use over sized allocations + +### Fixed + +- fixes #651 -- use rayon's optimized collect_vec_list + +### Other + +- Fix README doctests +- minor improvement for docs +- Remove InsertSlot +- Merge pull request #523 from morrisonlevi/oversized-allocations +- fix return +- address feedback from code review +- fast-path for not oversized allocations +- add with_capacity benchmark +- Merge pull request #649 from DaniPopes/serde_core +- Depend on `serde_core` instead of `serde` +- Merge pull request #645 from Amanieu/0.16-changelog +- Update changelog for 0.16 + - The `get_many_mut` family of methods have been renamed to `get_disjoint_mut` to match the standard library. The old names are still present for now, but deprecated. diff --git a/Cargo.toml b/Cargo.toml index 2ed5980fa..faa009581 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hashbrown" -version = "0.16.0" +version = "0.16.1" authors = ["Amanieu d'Antras "] description = "A Rust port of Google's SwissTable hash map" license = "MIT OR Apache-2.0"