Skip to content

Commit 167eb54

Browse files
committed
Version 0.5.1
1 parent 82d6f9d commit 167eb54

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.5.1] - 2019-08-04
11+
12+
### Added
13+
- The experimental and unsafe `RawTable` API is available under the "raw" feature. (#108)
14+
- Added entry-like methods for `HashSet`. (#98)
15+
16+
### Changed
17+
- Changed the default hasher from FxHash to AHash. (#97)
18+
- `hashbrown` is now fully `no_std` on recent Rust versions (1.36+). (#96)
19+
20+
### Fixed
21+
- We now avoid growing the table during insertions when it wasn't necessary. (#106)
22+
- `RawOccupiedEntryMut` now properly implements `Send` and `Sync`. (#100)
23+
- Relaxed `lazy_static` version. (#92)
24+
1025
## [v0.5.0] - 2019-06-12
1126

1227
### Fixed
@@ -119,7 +134,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
119134

120135
- Initial release
121136

122-
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.4.0...HEAD
137+
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.5.1...HEAD
138+
[v0.5.1]: https://github.com/rust-lang/hashbrown/compare/v0.5.0...v0.5.1
123139
[v0.5.0]: https://github.com/rust-lang/hashbrown/compare/v0.4.0...v0.5.0
124140
[v0.4.0]: https://github.com/rust-lang/hashbrown/compare/v0.3.1...v0.4.0
125141
[v0.3.1]: https://github.com/rust-lang/hashbrown/compare/v0.3.0...v0.3.1

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hashbrown"
3-
version = "0.5.0"
3+
version = "0.5.1"
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)