Skip to content

Commit 0a62c3e

Browse files
committed
Version 0.6.0
1 parent 0c1209a commit 0a62c3e

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10-
## [v0.5.1] - 2019-08-04
10+
## [v0.6.0] - 2019-08-13
11+
12+
### Fixed
13+
- Fixed AHash accidentally depending on `std`. (#110)
14+
15+
### Changed
16+
- The minimum Rust version has been bumped to 1.32 (due to `rand` dependency).
17+
18+
## ~~[v0.5.1] - 2019-08-04~~
19+
20+
This release was _yanked_ due to a breaking change for users of `no-default-features`.
1121

1222
### Added
1323
- The experimental and unsafe `RawTable` API is available under the "raw" feature. (#108)
@@ -134,7 +144,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
134144

135145
- Initial release
136146

137-
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.5.1...HEAD
147+
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.6.0...HEAD
148+
[v0.6.0]: https://github.com/rust-lang/hashbrown/compare/v0.5.1...v0.6.0
138149
[v0.5.1]: https://github.com/rust-lang/hashbrown/compare/v0.5.0...v0.5.1
139150
[v0.5.0]: https://github.com/rust-lang/hashbrown/compare/v0.4.0...v0.5.0
140151
[v0.4.0]: https://github.com/rust-lang/hashbrown/compare/v0.3.1...v0.4.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.5.1"
3+
version = "0.6.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.5"
87+
hashbrown = "0.6"
8888
```
8989

9090
Then:

0 commit comments

Comments
 (0)