Skip to content

Commit 9beb06b

Browse files
committed
Version 0.10.0
1 parent fabd0c6 commit 9beb06b

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.10.0] - 2021-01-16
11+
12+
## Changed
13+
- Parametrized `RawTable`, `HashSet` and `HashMap` over an allocator. (#133)
14+
- Improved branch prediction hints on stable. (#209)
15+
- Optimized hashing of primitive types with AHash using specialization. (#207)
16+
- Only instantiate `RawTable`'s reserve functions once per key-value. (#204)
17+
1018
## [v0.9.1] - 2020-09-28
1119

1220
## Added
@@ -263,7 +271,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
263271

264272
- Initial release
265273

266-
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.9.1...HEAD
274+
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.10.0...HEAD
275+
[v0.10.0]: https://github.com/rust-lang/hashbrown/compare/v0.9.1...v0.10.0
267276
[v0.9.1]: https://github.com/rust-lang/hashbrown/compare/v0.9.0...v0.9.1
268277
[v0.9.0]: https://github.com/rust-lang/hashbrown/compare/v0.8.2...v0.9.0
269278
[v0.8.2]: https://github.com/rust-lang/hashbrown/compare/v0.8.1...v0.8.2

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.1"
3+
version = "0.10.0"
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"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Add this to your `Cargo.toml`:
8585

8686
```toml
8787
[dependencies]
88-
hashbrown = "0.9"
88+
hashbrown = "0.10"
8989
```
9090

9191
Then:

0 commit comments

Comments
 (0)