Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sagebind committed May 17, 2018
1 parent 466c8a2 commit faee6ea
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog

## 0.1.1 - 2017-02-24
## 0.2.0 - 2018-05-17
0.2 is here! This release is a breaking change with API refactorings and improvements.

- Refactored module hierarchy to make more sense and to leave room for more data structures in the future.
- Add new traits for buffers that all buffer types can implement.
- Add new bounded atomic buffer implementation.

## 0.1.1 - 2018-02-24
- Fixed a critical logic error causing items to not be removable when the buffer length reached exactly the current capacity of the buffer.

## 0.1.0 - 2018-02-24
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Add this to your Cargo.toml file:

```toml
[dependencies]
ringtail = "0.1"
ringtail = "0.2"
```

## License
Expand Down
2 changes: 1 addition & 1 deletion src/buffers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ pub trait WritableBuffer<T>: Buffer<T> {
/// Copy the given elements and insert them into the back of the buffer.
///
/// Returns the number of elements pushed.
fn push(&mut self, src: &[T]) -> usize;
fn push(&mut self, src: &[T]) -> usize where T: Copy;
}

0 comments on commit faee6ea

Please sign in to comment.