diff --git a/actix-connect/Cargo.toml b/actix-connect/Cargo.toml index 8d88b2a9..96bc7be0 100644 --- a/actix-connect/Cargo.toml +++ b/actix-connect/Cargo.toml @@ -33,7 +33,7 @@ rustls = ["rust-tls", "tokio-rustls", "webpki"] uri = ["http"] [dependencies] -actix-service = "1.0.0-alpha.3" +actix-service = "1.0.0" actix-codec = "0.2.0" actix-utils = "1.0.0-alpha.3" actix-rt = "1.0.0-alpha.3" diff --git a/actix-ioframe/Cargo.toml b/actix-ioframe/Cargo.toml index 82a0cc96..9f4486b0 100644 --- a/actix-ioframe/Cargo.toml +++ b/actix-ioframe/Cargo.toml @@ -18,7 +18,7 @@ name = "actix_ioframe" path = "src/lib.rs" [dependencies] -actix-service = "1.0.0-alpha.3" +actix-service = "1.0.0" actix-codec = "0.2.0" actix-utils = "1.0.0-alpha.2" actix-rt = "1.0.0-alpha.2" diff --git a/actix-rt/CHANGES.md b/actix-rt/CHANGES.md index 84ffa768..7c7ad63d 100644 --- a/actix-rt/CHANGES.md +++ b/actix-rt/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [1.0.0] - 2019-12-11 + +* Update dependencies + ## [1.0.0-alpha.3] - 2019-12-07 ### Fixed diff --git a/actix-rt/Cargo.toml b/actix-rt/Cargo.toml index 145bb39a..f3305b3b 100644 --- a/actix-rt/Cargo.toml +++ b/actix-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-rt" -version = "1.0.0-alpha.3" +version = "1.0.0" authors = ["Nikolay Kim "] description = "Actix runtime" keywords = ["network", "framework", "async", "futures"] @@ -9,7 +9,6 @@ repository = "https://github.com/actix/actix-net.git" documentation = "https://docs.rs/actix-rt/" categories = ["network-programming", "asynchronous"] license = "MIT/Apache-2.0" -exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"] edition = "2018" workspace = ".." @@ -18,7 +17,7 @@ name = "actix_rt" path = "src/lib.rs" [dependencies] -actix-macros = "0.1.0-alpha.1" +actix-macros = "0.1.0" actix-threadpool = "0.3" futures = "0.3.1" copyless = "0.1.4" diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index 166f7782..3d974e3d 100644 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -21,7 +21,7 @@ path = "src/lib.rs" default = [] [dependencies] -actix-service = "1.0.0-alpha.4" +actix-service = "1.0.0" actix-rt = "1.0.0-alpha.3" actix-codec = "0.2.0" actix-utils = "1.0.0-alpha.3" diff --git a/actix-testing/Cargo.toml b/actix-testing/Cargo.toml index 574f42ce..35c16128 100644 --- a/actix-testing/Cargo.toml +++ b/actix-testing/Cargo.toml @@ -18,9 +18,9 @@ path = "src/lib.rs" [dependencies] actix-rt = "1.0.0-alpha.3" -actix-macros = "0.1.0-alpha.1" +actix-macros = "0.1.0" actix-server = "1.0.0-alpha.3" -actix-service = "1.0.0-alpha.3" +actix-service = "1.0.0" log = "0.4" net2 = "0.2" diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 8fe0d30d..a8846e5d 100644 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -32,7 +32,7 @@ rustls = ["rust-tls", "webpki", "webpki-roots", "tokio-rustls"] nativetls = ["native-tls", "tokio-tls"] [dependencies] -actix-service = "1.0.0-alpha.3" +actix-service = "1.0.0" actix-codec = "0.2.0" actix-utils = "1.0.0-alpha.3" actix-rt = "1.0.0-alpha.3" diff --git a/actix-utils/Cargo.toml b/actix-utils/Cargo.toml index 9455978a..c94e133d 100644 --- a/actix-utils/Cargo.toml +++ b/actix-utils/Cargo.toml @@ -18,7 +18,7 @@ name = "actix_utils" path = "src/lib.rs" [dependencies] -actix-service = "1.0.0-alpha.3" +actix-service = "1.0.0" actix-rt = "1.0.0-alpha.3" actix-codec = "0.2.0" bytes = "0.5.2"