diff --git a/Cargo.toml b/Cargo.toml index d848861ef..d2c61a4dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,11 +67,11 @@ rustls = ["rust-tls", "actix-tls/rustls", "awc/rustls"] [dependencies] actix-codec = "0.2.0-alpha.3" -actix-service = "1.0.0-alpha.3" +actix-service = "1.0.0-alpha.4" actix-utils = "1.0.0-alpha.3" actix-router = "0.2.0" actix-rt = "1.0.0-alpha.3" -actix-server = "1.0.0-alpha.3" +actix-server = "1.0.0-alpha.4" actix-testing = "1.0.0-alpha.3" actix-threadpool = "0.3.0" actix-tls = { version = "1.0.0-alpha.3" } @@ -127,6 +127,3 @@ actix-session = { path = "actix-session" } actix-files = { path = "actix-files" } actix-multipart = { path = "actix-multipart" } awc = { path = "awc" } - -actix-service = { git = "https://github.com/actix/actix-net.git" } -actix-server = { git = "https://github.com/actix/actix-net.git" } \ No newline at end of file diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index 3df706dc9..4349417ca 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -1,5 +1,7 @@ # Changes +## [1.0.0-alpha.4] - 2019-12-08 + ### Added * Add impl ResponseBuilder for Error diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index 0a8787e06..f42604bed 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-http" -version = "1.0.0-alpha.3" +version = "1.0.0-alpha.4" authors = ["Nikolay Kim "] description = "Actix http primitives" readme = "README.md" @@ -44,7 +44,7 @@ fail = ["failure"] secure-cookies = ["ring"] [dependencies] -actix-service = "1.0.0-alpha.3" +actix-service = "1.0.0-alpha.4" actix-codec = "0.2.0-alpha.3" actix-connect = "1.0.0-alpha.3" actix-utils = "1.0.0-alpha.3" @@ -92,7 +92,7 @@ flate2 = { version="1.0.7", optional = true, default-features = false } failure = { version = "0.1.5", optional = true } [dev-dependencies] -actix-server = { version = "1.0.0-alpha.3" } +actix-server = { version = "1.0.0-alpha.4" } actix-connect = { version = "1.0.0-alpha.3", features=["openssl"] } actix-http-test = { version = "1.0.0-alpha.3", features=["openssl"] } actix-tls = { version = "1.0.0-alpha.3", features=["openssl"] }