add breaking changes back in

This commit is contained in:
Rob Ede 2020-08-18 23:08:49 +01:00
parent 14307b2ca9
commit 2688610d3c
No known key found for this signature in database
GPG Key ID: C2A3B36E841A91E6
3 changed files with 1 additions and 13 deletions

View File

@ -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

View File

@ -16,5 +16,3 @@ pub mod stream;
pub mod task;
pub mod time;
pub mod timeout;
pub use dispatcher as framed;

View File

@ -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 {