File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.10.0] - 2021-01-16
11
+
12
+ ## Changed
13
+ - Parametrized ` RawTable ` , ` HashSet ` and ` HashMap ` over an allocator. (#133 )
14
+ - Improved branch prediction hints on stable. (#209 )
15
+ - Optimized hashing of primitive types with AHash using specialization. (#207 )
16
+ - Only instantiate ` RawTable ` 's reserve functions once per key-value. (#204 )
17
+
10
18
## [ v0.9.1] - 2020-09-28
11
19
12
20
## Added
@@ -263,7 +271,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
263
271
264
272
- Initial release
265
273
266
- [ Unreleased ] : https://github.com/rust-lang/hashbrown/compare/v0.9.1...HEAD
274
+ [ Unreleased ] : https://github.com/rust-lang/hashbrown/compare/v0.10.0...HEAD
275
+ [ v0.10.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.9.1...v0.10.0
267
276
[ v0.9.1 ] : https://github.com/rust-lang/hashbrown/compare/v0.9.0...v0.9.1
268
277
[ v0.9.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.8.2...v0.9.0
269
278
[ v0.8.2 ] : https://github.com/rust-lang/hashbrown/compare/v0.8.1...v0.8.2
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " hashbrown"
3
- version = " 0.9.1 "
3
+ version = " 0.10.0 "
4
4
authors = [" Amanieu d'Antras <amanieu@gmail.com>" ]
5
5
description = " A Rust port of Google's SwissTable hash map"
6
6
license = " Apache-2.0/MIT"
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ Add this to your `Cargo.toml`:
85
85
86
86
``` toml
87
87
[dependencies ]
88
- hashbrown = " 0.9 "
88
+ hashbrown = " 0.10 "
89
89
```
90
90
91
91
Then:
You can’t perform that action at this time.
0 commit comments