Skip to content

Commit 7220ced

Browse files
chore: release v0.16.2
1 parent 7e10037 commit 7220ced

2 files changed

Lines changed: 53 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,58 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.16.2](https://github.com/rust-lang/hashbrown/compare/v0.16.1...v0.16.2) - 2026-03-07
11+
12+
### Fixed
13+
14+
- disable panic tests on wasm32
15+
16+
### Other
17+
18+
- Actually test LSX, remove unused features
19+
- Lint SIMD code, fix generic expectation failures
20+
- fix match_same_arms lint
21+
- fix single_match_else lint
22+
- fix if_not_else lint
23+
- fix needless_continue lint
24+
- fix redundant_else lint
25+
- Merge pull request #690 from xtqqczze/clippy/manual_let_else
26+
- impl Error for TryReserveError
27+
- Merge pull request #697 from xtqqczze/must-use-constructors
28+
- Merge pull request #692 from N1ark/fix-uninit-slice
29+
- fix str_to_string lint
30+
- Merge pull request #687 from xtqqczze/clippy/ptr
31+
- Merge branch 'master' into clippy/ptr
32+
- Merge pull request #693 from xtqqczze/unwrap_unchecked
33+
- Merge pull request #685 from xtqqczze/clippy/cast_ptr_alignment
34+
- Merge pull request #686 from cuviper/into_map
35+
- Merge pull request #689 from xtqqczze/clippy/semicolon_if_nothing_returned
36+
- use cfg(panic = "unwind")
37+
- Merge pull request #682 from xtqqczze/patch-1
38+
- Clarify std default hasher
39+
- Move crate::raw::alloc into crate::alloc
40+
- Run cargo doc on CI
41+
- Replace manual rustdoc links with better ones
42+
- MSRV 1.85, edition 2024
43+
- Run taplo in CI
44+
- :invert isn't used in all cases; just inline it to avoid allowing a lint
45+
- Remove expectations that no longer apply
46+
- Replace allow with expect where possible
47+
- Deny unreachable_pub
48+
- Manually tweak unsafe block additions
49+
- Enable unsafe_op_in_unsafe_fn for 2024 compatibility, clippy fix
50+
- Apparently CI hard-coded 1.80 as a fixed point, now it's just 1.84
51+
- Clippy fix
52+
- Move lints to Cargo.toml
53+
- taplo fmt
54+
- Update MSRV
55+
- Merge pull request #675 from clarfonthey/unreachable-pub
56+
- Merge pull request #670 from clarfonthey/entry-into-entry
57+
- Improve entry API
58+
- Add hash_table::OccupiedEntry::replace_entry_with to mirror HashMap API
59+
- Override clone_from for HashTable
60+
- Rename raw table buckets to num_buckets
61+
1062
## [0.16.1](https://github.com/rust-lang/hashbrown/compare/v0.16.0...v0.16.1) - 2025-11-20
1163

1264
### Added

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.1"
3+
version = "0.16.2"
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)