File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
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 ` .
11
21
12
22
### Added
13
23
- 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/).
134
144
135
145
- Initial release
136
146
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
138
149
[ v0.5.1 ] : https://github.com/rust-lang/hashbrown/compare/v0.5.0...v0.5.1
139
150
[ v0.5.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.4.0...v0.5.0
140
151
[ v0.4.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.3.1...v0.4.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " hashbrown"
3
- version = " 0.5.1 "
3
+ version = " 0.6.0 "
4
4
authors = [
" Amanieu d'Antras <[email protected] >" ]
5
5
description = " A Rust port of Google's SwissTable hash map"
6
6
license = " Apache-2.0/MIT"
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ Add this to your `Cargo.toml`:
84
84
85
85
``` toml
86
86
[dependencies ]
87
- hashbrown = " 0.5 "
87
+ hashbrown = " 0.6 "
88
88
```
89
89
90
90
Then:
You can’t perform that action at this time.
0 commit comments