File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.3.0] - 2019-04-23
11
+
12
+ ### Changed
13
+ - Changed shrink_to to not panic if min_capacity < capacity. (#67 )
14
+
15
+ ### Fixed
16
+ - Worked around emscripten bug emscripten-core/emscripten-fastcomp #258 . (#66 )
17
+
10
18
## [ v0.2.2] - 2019-04-16
11
19
12
20
### Fixed
@@ -93,7 +101,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
93
101
94
102
- Initial release
95
103
96
- [ Unreleased ] : https://github.com/Amanieu/hashbrown/compare/v0.2.2...HEAD
104
+ [ Unreleased ] : https://github.com/Amanieu/hashbrown/compare/v0.3.0...HEAD
105
+ [ v0.3.0 ] : https://github.com/Amanieu/hashbrown/compare/v0.2.2...v0.3.0
97
106
[ v0.2.2 ] : https://github.com/Amanieu/hashbrown/compare/v0.2.1...v0.2.2
98
107
[ v0.2.1 ] : https://github.com/Amanieu/hashbrown/compare/v0.2.0...v0.2.1
99
108
[ v0.2.0 ] : https://github.com/Amanieu/hashbrown/compare/v0.1.8...v0.2.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " hashbrown"
3
- version = " 0.2.2 "
3
+ version = " 0.3.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 @@ -62,7 +62,7 @@ Add this to your `Cargo.toml`:
62
62
63
63
``` toml
64
64
[dependencies ]
65
- hashbrown = " 0.2 "
65
+ hashbrown = " 0.3 "
66
66
```
67
67
68
68
This crate has the following Cargo features:
You can’t perform that action at this time.
0 commit comments