Skip to content

Commit efbd036

Browse files
committed
Version 0.8.0
1 parent d6869a5 commit efbd036

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.8.0] - 2020-06-18
11+
12+
### Fixed
13+
- Marked `RawTable::par_iter` as `unsafe`. (#157)
14+
15+
### Changed
16+
- Reduced the size of `HashMap`. (#159)
17+
- No longer create tables with a capacity of 1 element. (#162)
18+
- Removed `K: Eq + Hash` bounds on `retain`. (#163)
19+
- Pulled in `HashMap` changes from rust-lang/rust (#164):
20+
- `extend_one` support on nightly.
21+
- `CollectionAllocErr` renamed to `TryReserveError`.
22+
- Added `HashSet::get_or_insert_owned`.
23+
- `Default` for `HashSet` no longer requires `T: Eq + Hash` and `S: BuildHasher`.
24+
1025
## [v0.7.2] - 2020-04-27
1126

1227
### Added
@@ -196,7 +211,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
196211

197212
- Initial release
198213

199-
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.7.2...HEAD
214+
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.8.0...HEAD
215+
[v0.8.0]: https://github.com/rust-lang/hashbrown/compare/v0.7.2...v0.8.0
200216
[v0.7.2]: https://github.com/rust-lang/hashbrown/compare/v0.7.1...v0.7.2
201217
[v0.7.1]: https://github.com/rust-lang/hashbrown/compare/v0.7.0...v0.7.1
202218
[v0.7.0]: https://github.com/rust-lang/hashbrown/compare/v0.6.3...v0.7.0

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.7.2"
3+
version = "0.8.0"
44
authors = ["Amanieu d'Antras <[email protected]>"]
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
@@ -84,7 +84,7 @@ Add this to your `Cargo.toml`:
8484

8585
```toml
8686
[dependencies]
87-
hashbrown = "0.7"
87+
hashbrown = "0.8"
8888
```
8989

9090
Then:

0 commit comments

Comments
 (0)