Skip to content

Commit faee6ea

Browse files
committed
Update changelog
1 parent 466c8a2 commit faee6ea

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/buffers/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)