From 2688610d3c0f7db4956ab4913a296a94e0c1fd64 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Tue, 18 Aug 2020 23:08:49 +0100 Subject: [PATCH] add breaking changes back in --- actix-utils/CHANGES.md | 3 +-- actix-utils/src/lib.rs | 2 -- actix-utils/src/task.rs | 9 --------- 3 files changed, 1 insertion(+), 13 deletions(-) diff --git a/actix-utils/CHANGES.md b/actix-utils/CHANGES.md index 9ae7f4564e..7c9ddd173a 100644 --- a/actix-utils/CHANGES.md +++ b/actix-utils/CHANGES.md @@ -4,8 +4,7 @@ * Upgrade `tokio-util` to `0.3`. * Remove unsound custom Cell and use `std::cell::RefCell` instead, as well as `actix-service`. -* Provide correctly spelled `LocalWaker::is_registered` method and deprecate the replaced. -* Alias `framed` module as `dispatcher`. +* Rename method to correctly spelled `LocalWaker::is_registered`. ## [1.0.6] - 2020-01-08 diff --git a/actix-utils/src/lib.rs b/actix-utils/src/lib.rs index b9d245fa82..7fde1f5968 100644 --- a/actix-utils/src/lib.rs +++ b/actix-utils/src/lib.rs @@ -16,5 +16,3 @@ pub mod stream; pub mod task; pub mod time; pub mod timeout; - -pub use dispatcher as framed; diff --git a/actix-utils/src/task.rs b/actix-utils/src/task.rs index dd961ad997..dca386b843 100644 --- a/actix-utils/src/task.rs +++ b/actix-utils/src/task.rs @@ -34,15 +34,6 @@ impl LocalWaker { } } - #[deprecated( - note = "Use correctly spelled `is_registered` method. Removal scheduled for v2.0." - )] - #[inline] - /// Check if waker has been registered. - pub fn is_registed(&self) -> bool { - self.is_registered() - } - #[inline] /// Check if waker has been registered. pub fn is_registered(&self) -> bool {