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/).
77
88## [ Unreleased]
99
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+
1024## [ v0.9.0] - 2020-09-03
1125
1226### Fixed
@@ -249,7 +263,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
249263
250264- Initial release
251265
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
253268[ v0.9.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.8.2...v0.9.0
254269[ v0.8.2 ] : https://github.com/rust-lang/hashbrown/compare/v0.8.1...v0.8.2
255270[ 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 11[package ]
22name = " hashbrown"
3- version = " 0.9.0 "
3+ version = " 0.9.1 "
44authors = [" Amanieu d'Antras <amanieu@gmail.com>" ]
55description = " A Rust port of Google's SwissTable hash map"
66license = " Apache-2.0/MIT"
You can’t perform that action at this time.
0 commit comments