diff --git a/bounded-collections/CHANGELOG.md b/bounded-collections/CHANGELOG.md index 94de1222..27184ff6 100644 --- a/bounded-collections/CHANGELOG.md +++ b/bounded-collections/CHANGELOG.md @@ -4,6 +4,9 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ +## [0.1.3] - 2023-01-27 +- Removed non-existent `bounded` mod reference. [#715](https://github.com/paritytech/parity-common/pull/715) + ## [0.1.2] - 2023-01-27 - Ensured `bounded-collections` crate compiles under `no_std`. [#712](https://github.com/paritytech/parity-common/pull/712) diff --git a/bounded-collections/Cargo.toml b/bounded-collections/Cargo.toml index 9c3b4fc4..7f40fe47 100644 --- a/bounded-collections/Cargo.toml +++ b/bounded-collections/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bounded-collections" -version = "0.1.2" +version = "0.1.3" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" diff --git a/bounded-collections/src/lib.rs b/bounded-collections/src/lib.rs index 77b703dd..401842c9 100644 --- a/bounded-collections/src/lib.rs +++ b/bounded-collections/src/lib.rs @@ -258,7 +258,7 @@ macro_rules! bounded_vec { macro_rules! bounded_btree_map { ($ ( $key:expr => $value:expr ),* $(,)?) => { { - $crate::TryCollect::<$crate::bounded::BoundedBTreeMap<_, _, _>>::try_collect( + $crate::TryCollect::<$crate::BoundedBTreeMap<_, _, _>>::try_collect( $crate::alloc::vec![$(($key, $value)),*].into_iter() ).unwrap() }