diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ca082e6..382e662c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.3.2] - 2018-04-27 + +### Added + +- A re-export of `generic_array::ArrayLength`, for convenience. + ## [v0.3.1] - 2018-04-23 ### Added @@ -101,7 +107,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Initial release -[Unreleased]: https://github.com/japaric/heapless/compare/v0.3.1...HEAD +[Unreleased]: https://github.com/japaric/heapless/compare/v0.3.2...HEAD +[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 [v0.3.0]: https://github.com/japaric/heapless/compare/v0.2.7...v0.3.0 [v0.2.7]: https://github.com/japaric/heapless/compare/v0.2.6...v0.2.7 diff --git a/Cargo.toml b/Cargo.toml index abe51809..35acc9fd 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.1" +version = "0.3.2" [dev-dependencies] scoped_threadpool = "0.1.8" diff --git a/src/lib.rs b/src/lib.rs index ef48d8eb..be9f59bb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -64,6 +64,7 @@ extern crate hash32; extern crate std; pub use binary_heap::BinaryHeap; +pub use generic_array::ArrayLength; pub use generic_array::typenum::consts; pub use indexmap::{FnvIndexMap, IndexMap}; pub use indexset::{FnvIndexSet, IndexSet};