File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.7.0] - 2020-01-31
11
+
12
+ ### Added
13
+ - Added a ` drain_filter ` function to ` HashMap ` . (#135 )
14
+
15
+ ### Changed
16
+ - Updated ` ahash ` dependency to 0.3. (#141 )
17
+ - Optimized set union and intersection. (#130 )
18
+ - ` raw_entry ` can now be used without requiring ` S: BuildHasher ` . (#123 )
19
+ - ` RawTable::bucket_index ` can now be used under the ` raw ` feature. (#128 )
20
+
10
21
## [ v0.6.3] - 2019-10-31
11
22
12
23
### Added
@@ -164,7 +175,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
164
175
165
176
- Initial release
166
177
167
- [ Unreleased ] : https://github.com/rust-lang/hashbrown/compare/v0.6.3...HEAD
178
+ [ Unreleased ] : https://github.com/rust-lang/hashbrown/compare/v0.7.0...HEAD
179
+ [ v0.7.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.6.3...v0.7.0
168
180
[ v0.6.3 ] : https://github.com/rust-lang/hashbrown/compare/v0.6.2...v0.6.3
169
181
[ v0.6.2 ] : https://github.com/rust-lang/hashbrown/compare/v0.6.1...v0.6.2
170
182
[ v0.6.1 ] : https://github.com/rust-lang/hashbrown/compare/v0.6.0...v0.6.1
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.6 "
87
+ hashbrown = " 0.7 "
88
88
```
89
89
90
90
Then:
You can’t perform that action at this time.
0 commit comments