suggestions and changelog

This commit is contained in:
Rob Ede 2020-07-19 20:08:51 +01:00
parent d97aa4ee39
commit 230db53b04
No known key found for this signature in database
GPG Key ID: C2A3B36E841A91E6
3 changed files with 9 additions and 4 deletions

View File

@ -1,6 +1,8 @@
# Changes
* Use `.advance()` intead of `.split_to()`
## Unreleased - 2020-xx-xx
* Use `.advance()` instead of `.split_to()`.
* Upgrade `tokio-util` to `0.3`.
## [0.2.0] - 2019-12-10
@ -8,7 +10,7 @@
## [0.2.0-alpha.4]
* Fix buffer remaining capacity calcualtion
* Fix buffer remaining capacity calculation
## [0.2.0-alpha.3]

View File

@ -1,5 +1,8 @@
# Changes
## Unreleased - 2020-xx-xx
* Upgrade `tokio-util` to `0.3`.
## [1.0.6] - 2020-01-08
* Add `Clone` impl for `condition::Waiter`

View File

@ -69,7 +69,7 @@ where
S::Future: 'static,
T: AsyncRead + AsyncWrite,
U: Encoder<I> + Decoder,
// I: 'static,
I: 'static,
<U as Encoder<I>>::Error: std::fmt::Debug,
{
service: S,
@ -111,7 +111,7 @@ where
S::Future: 'static,
T: AsyncRead + AsyncWrite,
U: Decoder + Encoder<I>,
// I: 'static,
I: 'static,
<U as Decoder>::Error: std::fmt::Debug,
<U as Encoder<I>>::Error: std::fmt::Debug,
{