From 443a328fb44a996349c4e3979bf0acf3ddd65b8d Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 15 Nov 2021 02:39:55 +0000 Subject: [PATCH] prepare actix-server release 2.0.0-beta.9 --- actix-rt/CHANGES.md | 2 +- actix-server/CHANGES.md | 10 ++++++++-- actix-server/Cargo.toml | 2 +- actix-tls/Cargo.toml | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/actix-rt/CHANGES.md b/actix-rt/CHANGES.md index 4a0c5cfb..efb78d53 100644 --- a/actix-rt/CHANGES.md +++ b/actix-rt/CHANGES.md @@ -108,7 +108,7 @@ [#129]: https://github.com/actix/actix-net/issues/129 -## 1.1.0 - 2020-04-08 (YANKED) +## 1.1.0 - 2020-04-08 _(YANKED)_ * Expose `System::is_set` to check if current system has ben started [#99] * Add `Arbiter::is_running` to check if event loop is running [#124] * Add `Arbiter::local_join` associated function diff --git a/actix-server/CHANGES.md b/actix-server/CHANGES.md index 50dd65e9..51da40f2 100644 --- a/actix-server/CHANGES.md +++ b/actix-server/CHANGES.md @@ -3,13 +3,19 @@ ## Unreleased - 2021-xx-xx -## 2.0.0-beta.8 - 2021-11-05 +## 2.0.0-beta.9 - 2021-11-15 +* Restore `Arbiter` support lost in `beta.8`. [#417] + +[#417]: https://github.com/actix/actix-net/pull/417 + + +## 2.0.0-beta.8 - 2021-11-05 _(YANKED)_ * Fix non-unix signal handler. [#410] [#410]: https://github.com/actix/actix-net/pull/410 -## 2.0.0-beta.7 - 2021-11-05 +## 2.0.0-beta.7 - 2021-11-05 _(YANKED)_ * Server can be started in regular Tokio runtime. [#408] * Expose new `Server` type whose `Future` impl resolves when server stops. [#408] * Rename `Server` to `ServerHandle`. [#407] diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index 66e77c2f..0c369c81 100755 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-server" -version = "2.0.0-beta.8" +version = "2.0.0-beta.9" authors = [ "Nikolay Kim ", "fakeshadow <24548779@qq.com>", diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index b7903fc1..313e642d 100755 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -62,7 +62,7 @@ tokio-native-tls = { version = "0.3", optional = true } [dev-dependencies] actix-rt = "2.2.0" -actix-server = "2.0.0-beta.8" +actix-server = "2.0.0-beta.9" bytes = "1" env_logger = "0.9" futures-util = { version = "0.3.7", default-features = false, features = ["sink"] }