From 8f713e8fb297c06283b95b799b0a5ef630883e47 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Sun, 11 Mar 2018 23:16:51 +0100 Subject: [PATCH] v0.2.3 --- CHANGELOG.md | 11 ++++++++++- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f8dff42..70eede44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.2.3] - 2018-03-11 + +### Added + +- A `swap_remove` method to `Vec` +- A `LinearMap` implementation. `LinearMap` is a map / dict backed by an array and that performs + lookups via linear search. + ## [v0.2.2] - 2018-03-01 ### Added @@ -43,7 +51,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Initial release -[Unreleased]: https://github.com/japaric/heapless/compare/v0.2.2...HEAD +[Unreleased]: https://github.com/japaric/heapless/compare/v0.2.3...HEAD +[v0.2.3]: https://github.com/japaric/heapless/compare/v0.2.2...v0.2.3 [v0.2.2]: https://github.com/japaric/heapless/compare/v0.2.1...v0.2.2 [v0.2.1]: https://github.com/japaric/heapless/compare/v0.2.0...v0.2.1 [v0.2.0]: https://github.com/japaric/heapless/compare/v0.1.0...v0.2.0 diff --git a/Cargo.toml b/Cargo.toml index bacb4e86..54aac4ce 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.2.2" +version = "0.2.3" [dependencies] untagged-option = "0.1.1"