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
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.1"
version = "0.16.2"
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
description = "A Rust port of Google's SwissTable hash map"
license = "MIT OR Apache-2.0"
Expand Down