From dfdbfc674ef44dbcfaa44dd2dbaf2d082ddf2b6c Mon Sep 17 00:00:00 2001 From: "Stephen M. Coakley" Date: Thu, 2 Aug 2018 14:17:39 -0500 Subject: [PATCH] Release 0.2.1 --- CHANGELOG.md | 3 +++ Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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"