From 0d9d30419786dfb5ec82fa1942b7163049f03c6e Mon Sep 17 00:00:00 2001 From: "Stephen M. Coakley" Date: Thu, 9 Aug 2018 21:55:32 -0500 Subject: [PATCH] Release 0.3.0 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9ceeb9..873e68f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.3.0 - 2018-08-09 + +- Added a new `io` module featuring in-memory pipes. These pipes work similar to I/O streams but are based on an atomic ring buffer internally. + ## 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. diff --git a/Cargo.toml b/Cargo.toml index a2437d1..5472dde 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ringtail" -version = "0.2.2" +version = "0.3.0" description = "Efficient ring buffer for byte buffers, FIFO queues, and SPSC channels" authors = ["Stephen M. Coakley "] license = "MIT"