File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3- ## 0.1.1 - 2017-02-24
3+ ## 0.2.0 - 2018-05-17
4+ 0.2 is here! This release is a breaking change with API refactorings and improvements.
5+
6+ - Refactored module hierarchy to make more sense and to leave room for more data structures in the future.
7+ - Add new traits for buffers that all buffer types can implement.
8+ - Add new bounded atomic buffer implementation.
9+
10+ ## 0.1.1 - 2018-02-24
411- Fixed a critical logic error causing items to not be removable when the buffer length reached exactly the current capacity of the buffer.
512
613## 0.1.0 - 2018-02-24
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Add this to your Cargo.toml file:
1212
1313``` toml
1414[dependencies ]
15- ringtail = " 0.1 "
15+ ringtail = " 0.2 "
1616```
1717
1818## License
Original file line number Diff line number Diff line change @@ -50,5 +50,5 @@ pub trait WritableBuffer<T>: Buffer<T> {
5050 /// Copy the given elements and insert them into the back of the buffer.
5151 ///
5252 /// Returns the number of elements pushed.
53- fn push ( & mut self , src : & [ T ] ) -> usize ;
53+ fn push ( & mut self , src : & [ T ] ) -> usize where T : Copy ;
5454}
You can’t perform that action at this time.
0 commit comments