Skip to content

Latest commit

 

History

History
77 lines (69 loc) · 3.29 KB

CHANGELOG.md

File metadata and controls

77 lines (69 loc) · 3.29 KB

Changelog

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.

0.2.1 (2024-10-20)

Fixed

0.2.0 (2024-10-19)

Added

  • Reference conversion support from core arrays (utils#904)
  • Impl Default for Array (utils#905)
  • Deref/DerefMut impls for Array (utils#908, utils#913)
  • Impl From<Array<T, U>> for [T; N] (utils#945)
  • Impl IntoIterator for all ArraySizes (utils#956)
  • Impl IntoIterator for references to all ArraySizes (utils#957)
  • Concat and split methods (utils#958)
  • slice_as_chunks(_mut) methods (utils#974)
  • Impl Zeroize/ZeroizeOnDrop for Array (utils#984)
  • AssocArraySize trait (utils#1006, #40)
  • sizes submodule (utils#1014, #68)
  • ArrayN type alias (utils#1017)
  • Impl FromIterator (utils#1039)
  • Array::try_from_iter (#4)
  • Helper functions for Array<MaybeUninit<T>, U> (#8)
  • Send and Sync impls for Array (#15)
  • Array::map (#61)
  • Support all array sizes up to U512 (#67)
  • Array<Array<...>>::as_flattened{_mut}() (#86)
  • serde support (#88)
  • bytemuck support (#99)

Changed

Removed

0.1.0 (2022-05-07)

  • Initial release