File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 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/).
77
88## [ Unreleased]
99
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+
1018## [ v0.2.2] - 2019-04-16
1119
1220### Fixed
@@ -93,7 +101,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
93101
94102- Initial release
95103
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
97106[ v0.2.2 ] : https://github.com/Amanieu/hashbrown/compare/v0.2.1...v0.2.2
98107[ v0.2.1 ] : https://github.com/Amanieu/hashbrown/compare/v0.2.0...v0.2.1
99108[ 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 11[package ]
22name = " hashbrown"
3- version = " 0.2.2 "
3+ version = " 0.3.0 "
44authors = [" Amanieu d'Antras <amanieu@gmail.com>" ]
55description = " A Rust port of Google's SwissTable hash map"
66license = " Apache-2.0/MIT"
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Add this to your `Cargo.toml`:
6262
6363``` toml
6464[dependencies ]
65- hashbrown = " 0.2 "
65+ hashbrown = " 0.3 "
6666```
6767
6868This crate has the following Cargo features:
You can’t perform that action at this time.
0 commit comments