re-export generic_array::ArrayLength

This commit is contained in:
Jorge Aparicio 2018-04-27 04:53:05 +02:00
parent 38c4a8f66b
commit 66585909ef
3 changed files with 10 additions and 2 deletions

View File

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

View File

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

View File

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