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.9.0 - 2025-06-05
- prevent out of bound construction and define empty vs nonempty at compile time
=======
0.8.0 - 2024-12-02
0.7.1 - 2022-08-01
- fix
Abrbitraryimpl to honor upper(U) and lower(L) bounds;
0.7.0 - 2022-07-26
Abrbitraryimpl behindarbitraryfeature;BoundedVec::opt_empty_vec()- emptyVec<T>toOption<BoundedVec<T>>;Option<BoundedVec>::to_vec()to getVec<T>;
0.6.0 - 2022-04-21
NonEmptyVectype alias;
0.5.0 - 2021-10-14
serdeoptional feature;
0.4.0 - 2021-08-04
AsRef,AsMut,Hash,Ord,PartialOrdimpl for BoundedVec;Errorimpl for BoundedVecOutOfBounds;
0.3.0 - 2021-06-09
IntoIterimpl 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
BoundedVecimplementation includingmapped(),first(),last(), to/from array/Vec;