mirror of https://github.com/fafhrd91/actix-net
add breaking changes back in
This commit is contained in:
parent
14307b2ca9
commit
2688610d3c
|
@ -4,8 +4,7 @@
|
||||||
|
|
||||||
* Upgrade `tokio-util` to `0.3`.
|
* Upgrade `tokio-util` to `0.3`.
|
||||||
* Remove unsound custom Cell and use `std::cell::RefCell` instead, as well as `actix-service`.
|
* 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.
|
* Rename method to correctly spelled `LocalWaker::is_registered`.
|
||||||
* Alias `framed` module as `dispatcher`.
|
|
||||||
|
|
||||||
## [1.0.6] - 2020-01-08
|
## [1.0.6] - 2020-01-08
|
||||||
|
|
||||||
|
|
|
@ -16,5 +16,3 @@ pub mod stream;
|
||||||
pub mod task;
|
pub mod task;
|
||||||
pub mod time;
|
pub mod time;
|
||||||
pub mod timeout;
|
pub mod timeout;
|
||||||
|
|
||||||
pub use dispatcher as framed;
|
|
||||||
|
|
|
@ -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]
|
#[inline]
|
||||||
/// Check if waker has been registered.
|
/// Check if waker has been registered.
|
||||||
pub fn is_registered(&self) -> bool {
|
pub fn is_registered(&self) -> bool {
|
||||||
|
|
Loading…
Reference in New Issue