1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00

Update changelog

This commit is contained in:
Yuki Okushi 2020-03-04 15:20:14 +09:00
parent 687dc609dd
commit 9d661dc4f3
3 changed files with 10 additions and 5 deletions

View file

@ -10,10 +10,10 @@
### Changed
* Use `sha-1` crate instead of unmaintained `sha1` crate
* Skip empty chunks when returning response from a `Stream` #1308
* Update the `time` dependency to 0.2.7
* Update `actix-tls` dependency to 2.0.0-alpha.1
* Update `rustls` dependency to 0.17
## [2.0.0] - 2019-12-25

View file

@ -1,15 +1,19 @@
# Changes
## [2.0.0-alpha.2] - someday
### Changed
* Update `actix-connect` and `actix-tls` dependency to 2.0.0-alpha.1
## [2.0.0-alpha.1] - 2020-02-27
### Changed
* Update the `time` dependency to 0.2.7.
* Moved actors messages support from actix crate, enabled with feature `actors`.
* Breaking change: trait MessageBody requires Unpin and accepting Pin<&mut Self> instead of &mut self in the poll_next().
* MessageBody is not implemented for &'static [u8] anymore.
### Fixed

View file

@ -3,6 +3,7 @@
## [Unreleased] - 2020-xx-xx
* Update the `time` dependency to 0.2.7
* Update `actix-connect` dependency to 2.0.0-alpha.1
## [1.0.0] - 2019-12-13