Skip to content

Commit a1c3dd0

Browse files
committed
Version 0.12.2
1 parent e54c160 commit a1c3dd0

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.12.2] - 2022-07-09
11+
12+
## Added
13+
14+
- Added `Entry` API for `HashSet`. (#342)
15+
- Added `Extend<&'a (K, V)> for HashMap<K, V, S, A>`. (#340)
16+
- Added length-based short-circuiting for hash table iteration. (#338)
17+
Added a function to access the `RawTable` of a `HashMap`. (#335)-
18+
19+
## Changed
20+
21+
- Edited `do_alloc` to reduce LLVM IR generated. (#341)
22+
1023
## [v0.12.1] - 2022-05-02
1124

1225
## Fixed
@@ -344,7 +357,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
344357

345358
- Initial release
346359

347-
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.12.1...HEAD
360+
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.12.2...HEAD
361+
[v0.12.2]: https://github.com/rust-lang/hashbrown/compare/v0.12.1...v0.12.2
348362
[v0.12.1]: https://github.com/rust-lang/hashbrown/compare/v0.12.0...v0.12.1
349363
[v0.12.0]: https://github.com/rust-lang/hashbrown/compare/v0.11.2...v0.12.0
350364
[v0.11.2]: https://github.com/rust-lang/hashbrown/compare/v0.11.1...v0.11.2

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.12.1"
3+
version = "0.12.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)