From 1f2228e1cf78ffb7a9d8de8886d8bfcd4feca3eb Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Sat, 28 Apr 2018 12:28:57 +0200 Subject: [PATCH] v0.3.4 --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e073c99..29e841d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.3.4] - 2018-04-28 + +### Added + +- `BinaryHeap.pop_unchecked` an unchecked version of `BinaryHeap.pop` + ## [v0.3.3] - 2018-04-28 ### Added @@ -113,7 +119,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Initial release -[Unreleased]: https://github.com/japaric/heapless/compare/v0.3.3...HEAD +[Unreleased]: https://github.com/japaric/heapless/compare/v0.3.4...HEAD +[v0.3.4]: https://github.com/japaric/heapless/compare/v0.3.3...v0.3.4 [v0.3.3]: https://github.com/japaric/heapless/compare/v0.3.2...v0.3.3 [v0.3.2]: https://github.com/japaric/heapless/compare/v0.3.1...v0.3.2 [v0.3.1]: https://github.com/japaric/heapless/compare/v0.3.0...v0.3.1 diff --git a/Cargo.toml b/Cargo.toml index c4f7614a..16017d7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ keywords = [ license = "MIT OR Apache-2.0" name = "heapless" repository = "https://github.com/japaric/heapless" -version = "0.3.3" +version = "0.3.4" [dev-dependencies] scoped_threadpool = "0.1.8"