Skip to content

Commit 6263458

Browse files
authored
Merge pull request #620 from rust-lang/release-plz-2025-04-29T17-31-59Z
chore: release v0.15.3
2 parents 82e783e + 631dfed commit 6263458

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

CHANGELOG.md

+18-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,27 @@
1-
# Change Log
1+
# Changelog
22

33
All notable changes to this project will be documented in this file.
44

5-
The format is based on [Keep a Changelog](https://keepachangelog.com/)
6-
and this project adheres to [Semantic Versioning](https://semver.org/).
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [0.15.3](https://github.com/rust-lang/hashbrown/compare/v0.15.2...v0.15.3) - 2025-04-29
11+
12+
### Added
13+
14+
- SIMD implementation for LoongArch (#592, requires nightly)
15+
16+
### Changed
17+
18+
- Optimized insertion path by avoiding an unnecessary `match_empty` (#607)
19+
- Increased minimum table size for small types (#615)
20+
- Dropped FnMut trait bounds from `ExtractIf` data structures (#616)
21+
- Relaxed constraint in `hash_map::EntryRef` insertion methods `K: From<&Q>` to &Q: `Into<K>` (#611)
22+
- Added allocator template argument for `rustc_iter` (#605)
23+
- The `allocator-api2/nightly` feature is no longer enabled by `hashbrown/nightly` (#606)
24+
1025
## [v0.15.2] - 2024-11-14
1126

1227
### Added

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hashbrown"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
authors = ["Amanieu d'Antras <[email protected]>"]
55
description = "A Rust port of Google's SwissTable hash map"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)