Skip to content

Commit 0622304

Browse files
authored
Merge pull request #640 from rust-lang/release-plz-2025-08-20T21-28-39Z
chore: release v0.16.1
2 parents 21be06c + 1876e4f commit 0622304

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.16.1](https://github.com/rust-lang/hashbrown/compare/v0.16.0...v0.16.1) - 2025-11-20
11+
12+
### Added
13+
14+
- Added `HashTable` methods related to the raw bucket index (#657)
15+
- Added `VacantEntryRef::insert_with_key` (#579)
16+
17+
### Changed
18+
19+
- Removed specialization for `Copy` types (#662)
1020
- The `get_many_mut` family of methods have been renamed to `get_disjoint_mut`
1121
to match the standard library. The old names are still present for now, but
12-
deprecated.
22+
deprecated. (#648)
23+
- Recognize and use over-sized allocations when using custom allocators. (#523)
24+
- Depend on `serde_core` instead of `serde`. (#649)
25+
- Optimized `collect` on rayon parallel iterators. (#652)
1326

1427
## [0.16.0](https://github.com/rust-lang/hashbrown/compare/v0.15.5...v0.16.0) - 2025-08-28
1528

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hashbrown"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
55
description = "A Rust port of Google's SwissTable hash map"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)