mirror of https://github.com/fafhrd91/actix-web
update changelog
This commit is contained in:
parent
0c850ea025
commit
617734b534
|
@ -10,7 +10,7 @@
|
|||
* The type parameter of `Response` no longer has a default. [#2152]
|
||||
* The `Message` variant of `body::Body` is now `Pin<Box<dyn MessageBody>>`. [#2152]
|
||||
* `BodyStream` and `SizedStream` are no longer restricted to Unpin types. [#2152]
|
||||
* Enum error types are marked `#[non_exhaustive]`. [#????]
|
||||
* Enum error types are marked `#[non_exhaustive]`. [#2161]
|
||||
|
||||
### Removed
|
||||
* `cookies` feature flag. [#2065]
|
||||
|
@ -29,7 +29,7 @@
|
|||
[#2152]: https://github.com/actix/actix-web/pull/2152
|
||||
[#2159]: https://github.com/actix/actix-web/pull/2159
|
||||
[#2158]: https://github.com/actix/actix-web/pull/2158
|
||||
[#????]: https://github.com/actix/actix-web/pull/????
|
||||
[#2161]: https://github.com/actix/actix-web/pull/2161
|
||||
|
||||
|
||||
## 3.0.0-beta.5 - 2021-04-02
|
||||
|
|
|
@ -60,8 +60,8 @@ pub use self::http_message::HttpMessage;
|
|||
pub use self::message::{Message, RequestHead, RequestHeadType, ResponseHead};
|
||||
pub use self::payload::{Payload, PayloadStream};
|
||||
pub use self::request::Request;
|
||||
pub use self::response::{Response};
|
||||
pub use self::response_builder::{ResponseBuilder};
|
||||
pub use self::response::Response;
|
||||
pub use self::response_builder::ResponseBuilder;
|
||||
pub use self::service::HttpService;
|
||||
|
||||
pub mod http {
|
||||
|
|
Loading…
Reference in New Issue