File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.9.1] - 2020-09-28
11
+
12
+ ## Added
13
+ - Added safe methods to ` RawTable ` (#202 ):
14
+ - ` get ` : ` find ` and ` as_ref `
15
+ - ` get_mut ` : ` find ` and ` as_mut `
16
+ - ` insert_entry ` : ` insert ` and ` as_mut `
17
+ - ` remove_entry ` : ` find ` and ` remove `
18
+ - ` erase_entry ` : ` find ` and ` erase `
19
+
20
+ ## Changed
21
+ - Removed ` from_key_hashed_nocheck ` 's ` Q: Hash ` . (#200 )
22
+ - Made ` RawTable::drain ` safe. (#201 )
23
+
10
24
## [ v0.9.0] - 2020-09-03
11
25
12
26
### Fixed
@@ -249,7 +263,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
249
263
250
264
- Initial release
251
265
252
- [ Unreleased ] : https://github.com/rust-lang/hashbrown/compare/v0.9.0...HEAD
266
+ [ Unreleased ] : https://github.com/rust-lang/hashbrown/compare/v0.9.1...HEAD
267
+ [ v0.9.1 ] : https://github.com/rust-lang/hashbrown/compare/v0.9.0...v0.9.1
253
268
[ v0.9.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.8.2...v0.9.0
254
269
[ v0.8.2 ] : https://github.com/rust-lang/hashbrown/compare/v0.8.1...v0.8.2
255
270
[ v0.8.1 ] : https://github.com/rust-lang/hashbrown/compare/v0.8.0...v0.8.1
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " hashbrown"
3
- version = " 0.9.0 "
3
+ version = " 0.9.1 "
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"
You can’t perform that action at this time.
0 commit comments