Skip to content

Commit 34c1189

Browse files
committed
Version 0.9.1
1 parent d2b5aec commit 34c1189

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff 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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hashbrown"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
55
description = "A Rust port of Google's SwissTable hash map"
66
license = "Apache-2.0/MIT"

0 commit comments

Comments
 (0)