diff --git a/actix-server/CHANGES.md b/actix-server/CHANGES.md index 8ff34fcf..b42dc1a5 100644 --- a/actix-server/CHANGES.md +++ b/actix-server/CHANGES.md @@ -1,5 +1,17 @@ # Changes +## [0.1.2] - 2018-12-12 + +## Changed + +* rename ServiceConfig::rt() to ServiceConfig::apply() + + +### Fixed + +* Fix back-pressure for concurrent ssl handshakes + + ## [0.1.1] - 2018-12-11 * Fix signal handling on windows diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index c463f4ff..dc5eb3d6 100644 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-server" -version = "0.1.1" +version = "0.1.2" authors = ["Nikolay Kim "] description = "Actix server - General purpose tcp server" keywords = ["network", "framework", "async", "futures"] @@ -66,3 +66,6 @@ webpki-roots = { version = "0.15", optional = true } [dev-dependencies] env_logger = "0.5" +actix-service = "0.1.1" +actix-codec = "0.1.0" +actix-rt = "0.1.0"