File tree 2 files changed +18
-2
lines changed
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/).
7
7
8
8
## [ Unreleased]
9
9
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
+
10
25
## [ v0.5.0] - 2019-06-12
11
26
12
27
### Fixed
@@ -119,7 +134,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
119
134
120
135
- Initial release
121
136
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
123
139
[ v0.5.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.4.0...v0.5.0
124
140
[ v0.4.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.3.1...v0.4.0
125
141
[ 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 1
1
[package ]
2
2
name = " hashbrown"
3
- version = " 0.5.0 "
3
+ version = " 0.5.1 "
4
4
authors = [
" Amanieu d'Antras <[email protected] >" ]
5
5
description = " A Rust port of Google's SwissTable hash map"
6
6
license = " Apache-2.0/MIT"
You can’t perform that action at this time.
0 commit comments