Skip to content

Commit

Permalink
Release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sagebind committed Aug 3, 2018
1 parent 2b913be commit abebdf6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
# Changelog

## 0.2.2 - 2018-08-03

- Fixed an issue when resizing an unbounded buffer that is empty that resulted in the buffer length being reported incorrectly.

## 0.2.1 - 2018-08-02

- Fixed a logical error where pushing small amounts of data repeatedly into the buffer would overwrite existing data.

## 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

- Initial release.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ringtail"
version = "0.2.1"
version = "0.2.2"
description = "Efficient ring buffer for byte buffers, FIFO queues, and SPSC channels"
authors = ["Stephen M. Coakley <[email protected]>"]
license = "MIT"
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Ringtail

Efficient ring buffer implementations for byte buffers, FIFO queues, and SPSC channels.

[![Build Status](https://semaphoreci.com/api/v1/sagebind/ringtail/branches/master/badge.svg)](https://semaphoreci.com/sagebind/ringtail)
Expand All @@ -9,6 +10,7 @@ Efficient ring buffer implementations for byte buffers, FIFO queues, and SPSC ch
[Documentation](https://docs.rs/ringtail)

## Installation

Add this to your Cargo.toml file:

```toml
Expand All @@ -17,4 +19,5 @@ ringtail = "0.2"
```

## License

This library is licensed under the MIT license. See the [LICENSE](LICENSE) file for details.

0 comments on commit abebdf6

Please sign in to comment.