Skip to content

Latest commit

 

History

History
42 lines (24 loc) · 1.12 KB

CHANGELOG.md

File metadata and controls

42 lines (24 loc) · 1.12 KB

Change Log

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.

v0.2.1 - 2017-12-21

Added

  • Vec now implements both fmt::Debug, PartialEq and Eq.

  • resize and resize_default methods to Vec.

v0.2.0 - 2017-11-22

Added

  • A single producer single consumer mode to RingBuffer.

  • A truncate method to Vec.

Changed

  • [breaking-change] Both Vec::new and RingBuffer::new no longer require an initial value. The signature of new is now const fn() -> Self.

  • [breaking-change] The error type of all operations that may fail has changed from () to BufferFullError.

  • Both RingBuffer and Vec now support arrays of any size for their backup storage.

[v0.1.0] - 2017-04-27

  • Initial release