Skip to content

Releases: questdb/alloc-checked

v0.1.3

30 Jan 15:29
4406c66

Choose a tag to compare

New Features

  • VecDeque<T, A: Allocator> (#11) - Full double-ended queue implementation with custom allocator support
  • Vec::set_len (#13) - Added set_len method for manually setting vector length (unsafe)

Full Changelog: v0.1.2...v0.1.3

0.1.2

30 Jan 15:26
8535088

Choose a tag to compare

New Features

  • Claim trait (#9) - Added non-fallible cloning for types that can be cloned without allocation (e.g., Copy types)

v0.1.1...v0.1.2

0.1.1

30 Jan 15:24
80f3e20

Choose a tag to compare

Breaking Changes

  • Removed Clone trait implementation from Vec<T, A> in favor of fallible cloning.

New Features

  • TryClone trait (#8) - Introduced fallible cloning for collections that may fail on allocation.

Full Changelog: v0.1.0...v0.1.1

0.1.0

03 Oct 10:20
e525779

Choose a tag to compare

Overview

  • Initial release. Good initial support for the Vec type.