Skip to content

Commit 7e79b0c

Browse files
committed
Version 0.3.0
1 parent 7e2da14 commit 7e79b0c

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff 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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hashbrown"
3-
version = "0.2.2"
3+
version = "0.3.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

+1-1
Original file line numberDiff line numberDiff 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

6868
This crate has the following Cargo features:

0 commit comments

Comments
 (0)