Skip to content

Commit da4eaca

Browse files
committed
Version 0.7.2
1 parent 2c3f19c commit da4eaca

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](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.7.2] - 2020-04-27
11+
12+
### Added
13+
- Added `or_insert_with_key` to `Entry`. (#152)
14+
15+
### Fixed
16+
- Partially reverted `Clone` optimization which was unsound. (#154)
17+
18+
### Changed
19+
- Disabled use of `const-random` by default, which prevented reproducible builds. (#155)
20+
- Optimized `repeat` function. (#150)
21+
- Use `NonNull` for buckets, which improves codegen for iterators. (#148)
22+
1023
## [v0.7.1] - 2020-03-16
1124

1225
### Added
@@ -183,7 +196,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
183196

184197
- Initial release
185198

186-
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.7.1...HEAD
199+
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.7.2...HEAD
200+
[v0.7.2]: https://github.com/rust-lang/hashbrown/compare/v0.7.1...v0.7.2
187201
[v0.7.1]: https://github.com/rust-lang/hashbrown/compare/v0.7.0...v0.7.1
188202
[v0.7.0]: https://github.com/rust-lang/hashbrown/compare/v0.6.3...v0.7.0
189203
[v0.6.3]: https://github.com/rust-lang/hashbrown/compare/v0.6.2...v0.6.3

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.7.1"
3+
version = "0.7.2"
44
authors = ["Amanieu d'Antras <[email protected]>"]
55
description = "A Rust port of Google's SwissTable hash map"
66
license = "Apache-2.0/MIT"

0 commit comments

Comments
 (0)