aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2019-08-14 18:06:40 -0400
committerBrian Cully <bjc@kublai.com>2019-08-14 18:06:40 -0400
commit8798e2cbdf9d5791a26b85968efb14ae160fca84 (patch)
tree7dfd8b8fd5153be8e0e0a708fb0783c2374df6b9
parentfc570ff6ffe5d8369888b1e3f85dd0c9b1b344ab (diff)
downloadstarb-8798e2cbdf9d5791a26b85968efb14ae160fca84.tar.gz
starb-8798e2cbdf9d5791a26b85968efb14ae160fca84.zip
Add changelog.
-rw-r--r--Changelog.org8
1 files changed, 8 insertions, 0 deletions
diff --git a/Changelog.org b/Changelog.org
new file mode 100644
index 0000000..93327cc
--- /dev/null
+++ b/Changelog.org
@@ -0,0 +1,8 @@
+* Since 0.1
+
+ - API CHANGE: `RingBuffer::new()` no longer takes an argument.
+ - `Copy` trait is no longer required on most `RingBuffer` methods.
+ - Added two methods for bulk copying data in/out of the ring buffer:
+ `Reader::shift_into()` and `Writer::unshift_from()`.
+ - Added 'Iterator` implementation to `Reader`.
+ - Minor performance optimizations.