mirror of https://github.com/fafhrd91/actix-net
prepare server release 2.0.0-beta.3
This commit is contained in:
parent
361ead271c
commit
08af0951b5
|
@ -1,13 +1,18 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## Unreleased - 2021-xx-xx
|
## Unreleased - 2021-xx-xx
|
||||||
|
|
||||||
|
|
||||||
|
## 2.0.0-beta.3 - 2021-02-06
|
||||||
* Hidden `ServerBuilder::start` method has been removed. Use `ServerBuilder::run`. [#246]
|
* Hidden `ServerBuilder::start` method has been removed. Use `ServerBuilder::run`. [#246]
|
||||||
* Add retry for EINTR(`io::Interrupted`) in `Accept`'s poll loop. [#264]
|
* Add retry for EINTR signal (`io::Interrupted`) in `Accept`'s poll loop. [#264]
|
||||||
* Add `ServerBuilder::worker_max_blocking_threads` for customize blocking thread pool. [#265]
|
* Add `ServerBuilder::worker_max_blocking_threads` for customize blocking thread pool. [#265]
|
||||||
|
* Update `actix-rt` to `2.0.0`. [#273]
|
||||||
|
|
||||||
[#246]: https://github.com/actix/actix-net/pull/246
|
[#246]: https://github.com/actix/actix-net/pull/246
|
||||||
[#264]: https://github.com/actix/actix-net/pull/264
|
[#264]: https://github.com/actix/actix-net/pull/264
|
||||||
[#265]: https://github.com/actix/actix-net/pull/265
|
[#265]: https://github.com/actix/actix-net/pull/265
|
||||||
|
[#273]: https://github.com/actix/actix-net/pull/273
|
||||||
|
|
||||||
|
|
||||||
## 2.0.0-beta.2 - 2021-01-03
|
## 2.0.0-beta.2 - 2021-01-03
|
||||||
|
|
|
@ -64,7 +64,7 @@ tokio-native-tls = { version = "0.3", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
actix-rt = "2.0.0"
|
actix-rt = "2.0.0"
|
||||||
actix-server = "2.0.0-beta.2"
|
actix-server = "2.0.0-beta.3"
|
||||||
bytes = "1"
|
bytes = "1"
|
||||||
env_logger = "0.8"
|
env_logger = "0.8"
|
||||||
futures-util = { version = "0.3.7", default-features = false, features = ["sink"] }
|
futures-util = { version = "0.3.7", default-features = false, features = ["sink"] }
|
||||||
|
|
Loading…
Reference in New Issue