Skip to content

Commit

Permalink
Remove non-existent bounded mod reference (#715)
Browse files Browse the repository at this point in the history
* Remove non-existent bounded mod reference

* Bump version
  • Loading branch information
KiChjang authored Jan 27, 2023
1 parent b9123ad commit 854e68b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions bounded-collections/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion bounded-collections/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bounded-collections"
version = "0.1.2"
version = "0.1.3"
authors = ["Parity Technologies <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paritytech/parity-common"
Expand Down
2 changes: 1 addition & 1 deletion bounded-collections/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down

0 comments on commit 854e68b

Please sign in to comment.