1# 0.4.6 (December 8, 2023) 2 3- Add `Collect` combinator (backported from http-body-util). 4 5# 0.4.5 (May 20, 2022) 6 7- Add `String` impl for `Body`. 8- Add `Limited` body implementation. 9 10# 0.4.4 (October 22, 2021) 11 12- Add `UnsyncBoxBody` and `Body::boxed_unsync`. 13 14# 0.4.3 (August 8, 2021) 15 16- Implement `Default` for `BoxBody`. 17 18# 0.4.2 (May 8, 2021) 19 20- Correctly override `Body::size_hint` and `Body::is_end_stream` for `Empty`. 21- Add `Full` which is a body that consists of a single chunk. 22 23# 0.4.1 (March 18, 2021) 24 25- Add combinators to `Body`: 26 - `map_data`: Change the `Data` chunks produced by the body. 27 - `map_err`: Change the `Error`s produced by the body. 28 - `boxed`: Convert the `Body` into a boxed trait object. 29- Add `Empty`. 30 31# 0.4.0 (December 23, 2020) 32 33- Update `bytes` to v1.0. 34 35# 0.3.1 (December 13, 2019) 36 37- Implement `Body` for `http::Request<impl Body>` and `http::Response<impl Body>`. 38 39# 0.3.0 (December 4, 2019) 40 41- Rename `next` combinator to `data`. 42 43# 0.2.0 (December 3, 2019) 44 45- Update `http` to v0.2. 46- Update `bytes` to v0.5. 47 48# 0.2.0-alpha.3 (October 1, 2019) 49 50- Fix `Body` to be object-safe. 51 52# 0.2.0-alpha.2 (October 1, 2019) 53 54- Add `next` and `trailers` combinator methods. 55 56# 0.2.0-alpha.1 (August 20, 2019) 57 58- Update to use `Pin` in `poll_data` and `poll_trailers`. 59 60# 0.1.0 (May 7, 2019) 61 62- Initial release 63