Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 1.03 KB

CHANGELOG.md

File metadata and controls

26 lines (18 loc) · 1.03 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.

[Unreleased]

[0.8.0] - 2024-2-08

Fixed

  • The consuming iterator no longer needlessly clones the underlying vec.

[0.5.0] - 2023-3-29

Added

  • Added a drop handler type parameter, allowing overriding the drop handler implementation for deeply recursive usages.

[0.4.0] - 2023-3-29

Added

  • Added a growth factor to the generic list implementation, allowing for subsequent nodes to grow exponentially. This creates a VList implementation on top of the existing unrolled linked list implementation.

[0.3.0] - 2022-11-03

Added

  • Changed the internal representation to use the new GAT feature. No longer need to do so many layers of indirection
  • Added the capacity as a const generic. You can now pick the maximum size of any individual node in the unrolled linked list