File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11[package ]
22name = " hashbrown"
3- version = " 0.5.0 "
3+ version = " 0.5.1 "
44authors = [" Amanieu d'Antras <amanieu@gmail.com>" ]
55description = " A Rust port of Google's SwissTable hash map"
66license = " Apache-2.0/MIT"
You can’t perform that action at this time.
0 commit comments