File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Expand file tree Collapse file tree 3 files changed +19
-3
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.8.0] - 2020-06-18
11
+
12
+ ### Fixed
13
+ - Marked ` RawTable::par_iter ` as ` unsafe ` . (#157 )
14
+
15
+ ### Changed
16
+ - Reduced the size of ` HashMap ` . (#159 )
17
+ - No longer create tables with a capacity of 1 element. (#162 )
18
+ - Removed ` K: Eq + Hash ` bounds on ` retain ` . (#163 )
19
+ - Pulled in ` HashMap ` changes from rust-lang/rust (#164 ):
20
+ - ` extend_one ` support on nightly.
21
+ - ` CollectionAllocErr ` renamed to ` TryReserveError ` .
22
+ - Added ` HashSet::get_or_insert_owned ` .
23
+ - ` Default ` for ` HashSet ` no longer requires ` T: Eq + Hash ` and ` S: BuildHasher ` .
24
+
10
25
## [ v0.7.2] - 2020-04-27
11
26
12
27
### Added
@@ -196,7 +211,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
196
211
197
212
- Initial release
198
213
199
- [ Unreleased ] : https://github.com/rust-lang/hashbrown/compare/v0.7.2...HEAD
214
+ [ Unreleased ] : https://github.com/rust-lang/hashbrown/compare/v0.8.0...HEAD
215
+ [ v0.8.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.7.2...v0.8.0
200
216
[ v0.7.2 ] : https://github.com/rust-lang/hashbrown/compare/v0.7.1...v0.7.2
201
217
[ v0.7.1 ] : https://github.com/rust-lang/hashbrown/compare/v0.7.0...v0.7.1
202
218
[ v0.7.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.6.3...v0.7.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " hashbrown"
3
- version = " 0.7.2 "
3
+ version = " 0.8.0 "
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"
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ Add this to your `Cargo.toml`:
84
84
85
85
``` toml
86
86
[dependencies ]
87
- hashbrown = " 0.7 "
87
+ hashbrown = " 0.8 "
88
88
```
89
89
90
90
Then:
You can’t perform that action at this time.
0 commit comments