diff --git a/CHANGELOG.md b/CHANGELOG.md index 2506d3c..a9ceeb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,15 @@ # 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. @@ -11,7 +17,9 @@ - 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. diff --git a/Cargo.toml b/Cargo.toml index 26c0fbc..94fca9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] license = "MIT" diff --git a/README.md b/README.md index 1d01426..0139681 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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 @@ -17,4 +19,5 @@ ringtail = "0.2" ``` ## License + This library is licensed under the MIT license. See the [LICENSE](LICENSE) file for details.