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
-
Vec
now implements bothfmt::Debug
,PartialEq
andEq
. -
resize
andresize_default
methods toVec
.
v0.2.0 - 2017-11-22
-
A single producer single consumer mode to
RingBuffer
. -
A
truncate
method toVec
.
-
[breaking-change] Both
Vec::new
andRingBuffer::new
no longer require an initial value. The signature ofnew
is nowconst fn() -> Self
. -
[breaking-change] The error type of all operations that may fail has changed from
()
toBufferFullError
. -
Both
RingBuffer
andVec
now support arrays of any size for their backup storage.
- Initial release