From 9e6d65a1d6e18706060239868622701be22878a2 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Wed, 15 Mar 2017 09:36:11 -0700 Subject: [PATCH] Add a changelog --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..cfc63cd --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ + +# 0.4.1 (unreleased) + +* Expose `buf` module and have most types available from there vs. root. +* Implement `IntoBuf` for `T: Buf`. +* Add `FromBuf` and `Buf::collect`. +* Add iterator adapter for `Buf`. +* Add scatter/gather support to `Buf` and `BufMut`. +* Add `Buf::chain`. +* Reduce allocations on repeated calls to `BytesMut::reserve`. +* Implement `Debug` for more types. +* Remove `Source` in favor of `IntoBuf`. +* Implement `Extend` for `BytesMut`. + + +# 0.4.0 (February 24, 2017) + +* Initial release