Skip to content

v0.2.1

Choose a tag to compare

@michaellass michaellass released this 27 Feb 21:14
· 25 commits to master since this release

New:

  • Provide methods to resize an AlignedBox<[T]> using realloc. (#2)

Improved:

  • Optimize implementation of clone().
  • Internally wrap Box in zero-cost ManuallyDrop instead of Option. (#2)

Fixed:

  • Call drop on all contained elements when AlignedBox is dropped. This bug was introduced in v0.2.0 and found by the leak sanitizer.

Internals:

  • Refactor code to reduce code duplication, making it easier to add new features.
  • Reorder some operations to comply with documentated safety requirements.
  • CI: Add runs with all available sanitizers and Miri.