Skip to content

Commit

Permalink
add breaking changes back in
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Aug 18, 2020
1 parent 14307b2 commit 2688610
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
3 changes: 1 addition & 2 deletions actix-utils/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 0 additions & 2 deletions actix-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,3 @@ pub mod stream;
pub mod task;
pub mod time;
pub mod timeout;

pub use dispatcher as framed;
9 changes: 0 additions & 9 deletions actix-utils/src/task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 2688610

Please sign in to comment.