diff --git a/actix-codec/CHANGES.md b/actix-codec/CHANGES.md index 2259e44e..fa471c01 100644 --- a/actix-codec/CHANGES.md +++ b/actix-codec/CHANGES.md @@ -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] diff --git a/actix-utils/CHANGES.md b/actix-utils/CHANGES.md index 4a5ec485..0c036f67 100644 --- a/actix-utils/CHANGES.md +++ b/actix-utils/CHANGES.md @@ -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` diff --git a/actix-utils/src/framed.rs b/actix-utils/src/framed.rs index 09515956..fef70ff0 100644 --- a/actix-utils/src/framed.rs +++ b/actix-utils/src/framed.rs @@ -69,7 +69,7 @@ where S::Future: 'static, T: AsyncRead + AsyncWrite, U: Encoder + Decoder, - // I: 'static, + I: 'static, >::Error: std::fmt::Debug, { service: S, @@ -111,7 +111,7 @@ where S::Future: 'static, T: AsyncRead + AsyncWrite, U: Decoder + Encoder, - // I: 'static, + I: 'static, ::Error: std::fmt::Debug, >::Error: std::fmt::Debug, {