1# 0.1.12 (March 1, 2019)
2
3### Added
4- Add `unsplit` to join previously split `AsyncRead + AsyncWrite` (#807).
5
6# 0.1.11 (January 6, 2019)
7
8* Fix minor error in Decoder::decode API documentation (#797).
9
10# 0.1.10 (October 23, 2018)
11
12* Expose inner codec from `Framed` (#686).
13* Implement AsyncRead::prepare_uninitialized_buffer for Take and Chain (#678).
14
15# 0.1.9 (September 27, 2018)
16
17* Fix bug in `AsyncRead::split()` (#655).
18* Fix non-terminating loop in `length_delimited::FramedWrite` (#576).
19
20# 0.1.8 (August 23, 2018)
21
22* Documentation improvements
23
24# 0.1.7 (June 13, 2018)
25
26* Move `codec::{Encode, Decode, Framed*}` into `tokio-codec` (#353)
27
28# 0.1.6 (March 09, 2018)
29
30* Add native endian builder fn to length_delimited (#144)
31* Add AsyncRead::poll_read, AsyncWrite::poll_write (#170)
32
33# 0.1.5 (February 07, 2018)
34
35* Fix bug in `BytesCodec` and `LinesCodec`.
36* Performance improvement to `split`.
37
38# 0.1.4 (November 10, 2017)
39
40* Use `FrameTooBig` as length delimited error type (#70).
41* Provide `Bytes` and `Lines` codecs (#78).
42* Provide `AllowStdIo` wrapper (#76).
43
44# 0.1.3 (August 14, 2017)
45
46* Fix bug involving zero sized writes in copy helper (#57).
47* Add get / set accessors for length delimited max frame length setting. (#65).
48* Add `Framed::into_parts_and_codec` (#59).
49
50# 0.1.2 (May 23, 2017)
51
52* Add `from_parts` and `into_parts` to the framing combinators.
53* Support passing an initialized buffer to the framing combinators.
54* Add `length_adjustment` support to length delimited encoding (#48).
55
56# 0.1.1 (March 22, 2017)
57
58* Add some omitted `Self: Sized` bounds.
59* Add missing "inner" fns.
60
61# 0.1.0 (March 15, 2017)
62
63* Initial release
64