Skip to content

Commit 18ea4fe

Browse files
committed
Version 0.8.2
1 parent 4c55714 commit 18ea4fe

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.8.2] - 2020-08-08
11+
12+
### Changed
13+
- Avoid closures to improve compile times. (#183)
14+
- Do not iterate to drop if empty. (#182)
15+
1016
## [v0.8.1] - 2020-07-16
1117

1218
### Added
@@ -225,7 +231,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
225231

226232
- Initial release
227233

228-
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.8.1...HEAD
234+
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.8.2...HEAD
235+
[v0.8.2]: https://github.com/rust-lang/hashbrown/compare/v0.8.1...v0.8.2
229236
[v0.8.1]: https://github.com/rust-lang/hashbrown/compare/v0.8.0...v0.8.1
230237
[v0.8.0]: https://github.com/rust-lang/hashbrown/compare/v0.7.2...v0.8.0
231238
[v0.7.2]: https://github.com/rust-lang/hashbrown/compare/v0.7.1...v0.7.2

Cargo.toml

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hashbrown"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
authors = ["Amanieu d'Antras <[email protected]>"]
55
description = "A Rust port of Google's SwissTable hash map"
66
license = "Apache-2.0/MIT"
@@ -37,15 +37,18 @@ serde_test = "1.0"
3737
doc-comment = "0.3.1"
3838

3939
[features]
40-
default = [
41-
"ahash",
42-
"inline-more",
43-
]
40+
default = ["ahash", "inline-more"]
4441

45-
ahash-compile-time-rng = [ "ahash/compile-time-rng" ]
42+
ahash-compile-time-rng = ["ahash/compile-time-rng"]
4643
nightly = []
4744
rustc-internal-api = []
48-
rustc-dep-of-std = ["nightly", "core", "compiler_builtins", "alloc", "rustc-internal-api"]
45+
rustc-dep-of-std = [
46+
"nightly",
47+
"core",
48+
"compiler_builtins",
49+
"alloc",
50+
"rustc-internal-api",
51+
]
4952
raw = []
5053

5154
# Enables usage of `#[inline]` on far more functions than by default in this

0 commit comments

Comments
 (0)