Skip to content

Releases: Lut99/stackvec-rs

v0.3.0 - Additional `PartialEq`, segfault fix

25 Apr 08:42

Choose a tag to compare

Added

  • Some unit tests for (future) debugging purposes.
  • Implementations for PartialEq for StackVec with [T, LEN2], &'a [T] and Vec<T>.

Changed

  • From<[T, LEN]> is now implemented for From<T, LEN2> instead to also allow building it from arrays that don't consume the full capacity.
    • Note: not a breaking change because this is strictly more powerful than before.

Fixed

  • A double free error when iterating-by-ownership over a StackVec with Drop-elements.

v0.2.0 - `Deref<Target = [T]>` implementation

16 Apr 08:47

Choose a tag to compare

This should greatly increase the power of the StackVec, as its now implementing all typical slice operations from the standard library.

Added

  • A Deref<Target = [u8]> implementation for the StackVec.
    • Note: Some functions have now moved to the slice implementations. Should not be breaking, but be aware.
  • A From<StackVec> implementation for Vecs.

v0.1.0 - Initial Release

05 Apr 10:25

Choose a tag to compare

Initial release of the StackVec!