@@ -7,16 +7,31 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.11.0] - 2021-03-14
11
+
10
12
## Added
11
13
- Added safe ` try_insert_no_grow ` method to ` RawTable ` . (#229 )
14
+ - Added support for ` bumpalo ` as an allocator without the ` nightly ` feature. (#231 )
12
15
- Implemented ` Default ` for ` RawTable ` . (#237 )
13
16
- Added new safe methods ` RawTable::get_each_mut ` , ` HashMap::get_each_mut ` , and
14
17
` HashMap::get_each_key_value_mut ` . (#239 )
18
+ - Added ` From<HashMap<T, ()>> ` for ` HashSet<T> ` . (#235 )
19
+ - Added ` try_insert ` method to ` HashMap ` . (#247 )
15
20
16
21
## Changed
17
22
- The minimum Rust version has been bumped to 1.49.0. (#230 )
23
+ - Significantly improved compilation times by reducing the amount of generated IR. (#205 )
24
+
25
+ ## Removed
26
+ - We no longer re-export the unstable allocator items from the standard library, nor the stable shims approximating the same. (#227 )
27
+ - Removed hasher specialization support from ` aHash ` , which was resulting in inconsistent hashes being generated for a key. (#248 )
28
+
29
+ ## Fixed
30
+ - Fixed union length comparison. (#228 )
31
+
32
+ ## ~~ [ v0.10.0] - 2021-01-16~~
18
33
19
- ## [ v0.10.0 ] - 2021-01-16
34
+ This release was _ yanked _ due to inconsistent hashes being generated with the ` nightly ` feature. ( # 248 )
20
35
21
36
## Changed
22
37
- Parametrized ` RawTable ` , ` HashSet ` and ` HashMap ` over an allocator. (#133 )
@@ -280,7 +295,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
280
295
281
296
- Initial release
282
297
283
- [ Unreleased ] : https://github.com/rust-lang/hashbrown/compare/v0.10.0...HEAD
298
+ [ Unreleased ] : https://github.com/rust-lang/hashbrown/compare/v0.11.0...HEAD
299
+ [ v0.11.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.10.0...v0.11.0
284
300
[ v0.10.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.9.1...v0.10.0
285
301
[ v0.9.1 ] : https://github.com/rust-lang/hashbrown/compare/v0.9.0...v0.9.1
286
302
[ v0.9.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.8.2...v0.9.0
0 commit comments