diff --git a/Cargo.toml b/Cargo.toml index b5b5577f8..7fd460d4f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web" -version = "2.0.0-alpha.4" +version = "2.0.0-alpha.5" authors = ["Nikolay Kim "] description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust." readme = "README.md" diff --git a/awc/Cargo.toml b/awc/Cargo.toml index a84e7295c..18fd93791 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -55,10 +55,10 @@ rust-tls = { version = "0.16.0", package="rustls", optional = true, features = [ [dev-dependencies] actix-connect = { version = "1.0.0", features=["openssl"] } -actix-web = { version = "2.0.0-alpha.3", features=["openssl"] } +actix-web = { version = "2.0.0-alpha.5", features=["openssl"] } actix-http = { version = "1.0.0", features=["openssl"] } -actix-http-test = { version = "1.0.0-alpha.3", features=["openssl"] } -actix-utils = "1.0.0" +actix-http-test = { version = "1.0.0", features=["openssl"] } +actix-utils = "1.0.3" actix-server = "1.0.0" actix-tls = { version = "1.0.0", features=["openssl", "rustls"] } brotli = "3.3.0" diff --git a/test-server/CHANGES.md b/test-server/CHANGES.md index 82fc1969e..5690afc64 100644 --- a/test-server/CHANGES.md +++ b/test-server/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## [1.0.0] - 2019-12-13 + +### Changed + +* Replaced `TestServer::start()` with `test_server()` + + ## [1.0.0-alpha.3] - 2019-12-07 ### Changed diff --git a/test-server/Cargo.toml b/test-server/Cargo.toml index cc60259e6..3ed3ef687 100644 --- a/test-server/Cargo.toml +++ b/test-server/Cargo.toml @@ -40,7 +40,7 @@ actix-testing = "1.0.0" awc = "1.0.0" base64 = "0.11" -bytes = "0.5.2" +bytes = "0.5.3" futures = "0.3.1" http = "0.2.0" log = "0.4"