fixup changelogs

This commit is contained in:
Rob Ede 2021-03-30 12:03:23 +01:00
parent f4d2958563
commit b48165b490
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
4 changed files with 2 additions and 14 deletions

View File

@ -1,9 +1,6 @@
# Changes # Changes
## Unreleased - 2021-xx-xx ## Unreleased - 2021-xx-xx
* Move dispatcher from actix-utils. [#301]
[#301]: https://github.com/actix/actix-net/pull/301
## 0.4.0-beta.1 - 2020-12-28 ## 0.4.0-beta.1 - 2020-12-28

View File

@ -4,15 +4,9 @@
* Moved `mpsc` to own crate `local-channel`. [#301] * Moved `mpsc` to own crate `local-channel`. [#301]
* Moved `task::LocalWaker` to own crate `local-waker`. [#301] * Moved `task::LocalWaker` to own crate `local-waker`. [#301]
* Remove `timeout` module. [#301] * Remove `timeout` module. [#301]
* Remove `dispatcher` module. [#301]
* Expose `future` mod with `ready` and `poll_fn` helpers. [#301] * Expose `future` mod with `ready` and `poll_fn` helpers. [#301]
* `SendError` inner field is now public. [#286]
* Rename `Dispatcher::{get_sink => tx}`. [#286]
* Rename `Dispatcher::{get_ref => service}`. [#286]
* Rename `Dispatcher::{get_mut => service_mut}`. [#286]
* Rename `Dispatcher::{get_framed => framed}`. [#286]
* Rename `Dispatcher::{get_framed_mut => framed_mut}`. [#286]
[#286]: https://github.com/actix/actix-net/pull/286
[#301]: https://github.com/actix/actix-net/pull/301 [#301]: https://github.com/actix/actix-net/pull/301

View File

@ -1,6 +1,6 @@
//! Task-notifying counter. //! Task-notifying counter.
use alloc::rc::Rc; use std::rc::Rc;
use core::{cell::Cell, task}; use core::{cell::Cell, task};
use local_waker::LocalWaker; use local_waker::LocalWaker;

View File

@ -1,12 +1,9 @@
//! Various network related services and utilities for the Actix ecosystem. //! Various network related services and utilities for the Actix ecosystem.
#![no_std]
#![deny(rust_2018_idioms, nonstandard_style)] #![deny(rust_2018_idioms, nonstandard_style)]
#![allow(clippy::type_complexity)] #![allow(clippy::type_complexity)]
#![doc(html_logo_url = "https://actix.rs/img/logo.png")] #![doc(html_logo_url = "https://actix.rs/img/logo.png")]
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")] #![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
extern crate alloc;
pub mod counter; pub mod counter;
pub mod future; pub mod future;