diff --git a/CHANGELOG.md b/CHANGELOG.md index 48828df..2506d3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 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. diff --git a/Cargo.toml b/Cargo.toml index 5c272ba..26c0fbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ringtail" -version = "0.2.0" +version = "0.2.1" description = "Efficient ring buffer for byte buffers, FIFO queues, and SPSC channels" authors = ["Stephen M. Coakley "] license = "MIT"