This commit is contained in:
Jorge Aparicio 2018-03-11 23:16:51 +01:00
parent a29ec7acfc
commit 8f713e8fb2
2 changed files with 11 additions and 2 deletions

View File

@ -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

View File

@ -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"