Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ 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-09-30

### Added

- recognize and use over sized allocations

### Fixed

- fixes #651 -- use rayon's optimized collect_vec_list

### Other

- 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.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hashbrown"
version = "0.16.0"
version = "0.16.1"
authors = ["Amanieu d'Antras <[email protected]>"]
description = "A Rust port of Google's SwissTable hash map"
license = "MIT OR Apache-2.0"
Expand Down