Skip to content

0.7.0

Latest

Choose a tag to compare

@github-actions github-actions released this 06 Jun 15:00
· 1 commit to master since this release
Immutable release. Only release title and notes can be modified.
0.7.0
4ec69c4

Added

  • Validation in DoubleArray::new to prevent undefined behavior when constructing from malformed byte slices (#24), by @vabr-g and @kampersanda.
  • DoubleArray::new_unchecked (unsafe) for callers who can guarantee validity and want to skip the validation cost, by @vabr-g and @kampersanda.
  • YadaError variants EmptyDoubleArray, UnalignedDoubleArray, UnalignedDoubleArrayBlocks, and InvalidDoubleArrayUnit for byte slice validation failures, by @vabr-g and @kampersanda.
  • Debug impl for DoubleArray.

Changed

  • BREAKING: DoubleArray::new now returns Result<Self, YadaError> instead of Self, by @vabr-g and @kampersanda.