All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
Unreleased - ReleaseDate
0.7.1 - 2022-08-01
- fix
Abrbitrary
impl to honor upper(U) and lower(L) bounds;
0.7.0 - 2022-07-26
Abrbitrary
impl behindarbitrary
feature;BoundedVec::opt_empty_vec()
- emptyVec<T>
toOption<BoundedVec<T>>
;Option<BoundedVec>::to_vec()
to getVec<T>
;
0.6.0 - 2022-04-21
NonEmptyVec
type alias;
0.5.0 - 2021-10-14
serde
optional feature;
0.4.0 - 2021-08-04
AsRef
,AsMut
,Hash
,Ord
,PartialOrd
impl for BoundedVec;Error
impl for BoundedVecOutOfBounds;
0.3.0 - 2021-06-09
IntoIter
impl forBoundedVec
;BoundedVec::enumerated
(return new instance with indices included);BoundedVec::split_last
(return last and all the rest of the elements);
0.2.0 - 2021-05-11
BoundedVec::try_mapped
,BoundedVec::try_mapped_ref
;
0.1.0 - 2021-05-10
- initial
BoundedVec
implementation includingmapped()
,first()
,last()
, to/from array/Vec
;