Skip to content

Commit 844b337

Browse files
committed
Auto merge of #471 - Amanieu:release-0.14.1, r=Amanieu
Prepare release of v0.14.1
2 parents a24996e + f08765f commit 844b337

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.14.1] - 2023-09-28
11+
12+
### Added
13+
14+
- Allow serializing `HashMap`s that use a custom allocator. (#449)
15+
16+
### Changed
17+
18+
- Use the `Equivalent` trait from the `equivalent` crate. (#442)
19+
- Slightly improved performance of table resizing. (#451)
20+
- Relaxed MSRV to 1.63.0. (#457)
21+
- Removed `Clone` requirement from custom allocators. (#468)
22+
23+
### Fixed
24+
25+
- Fixed custom allocators being leaked in some situations. (#439, #465)
26+
1027
## [v0.14.0] - 2023-06-01
1128

1229
### Added
@@ -433,7 +450,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
433450

434451
- Initial release
435452

436-
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.14.0...HEAD
453+
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.14.1...HEAD
454+
[v0.14.1]: https://github.com/rust-lang/hashbrown/compare/v0.14.0...v0.14.1
437455
[v0.14.0]: https://github.com/rust-lang/hashbrown/compare/v0.13.2...v0.14.0
438456
[v0.13.2]: https://github.com/rust-lang/hashbrown/compare/v0.13.1...v0.13.2
439457
[v0.13.1]: https://github.com/rust-lang/hashbrown/compare/v0.12.3...v0.13.1

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.14.0"
3+
version = "0.14.1"
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)