diff --git a/actix-connect/CHANGES.md b/actix-connect/CHANGES.md index c83aecde..f562d725 100644 --- a/actix-connect/CHANGES.md +++ b/actix-connect/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [0.1.0] - 2019-03-xx +## [0.1.0] - 2019-03-14 * Refactor resolver and connector services diff --git a/actix-connect/Cargo.toml b/actix-connect/Cargo.toml index b5580899..0ea9eb16 100644 --- a/actix-connect/Cargo.toml +++ b/actix-connect/Cargo.toml @@ -6,7 +6,7 @@ description = "Actix Connector - tcp connector service" keywords = ["network", "framework", "async", "futures"] homepage = "https://actix.rs" repository = "https://github.com/actix/actix-net.git" -documentation = "https://docs.rs/actix-net/" +documentation = "https://docs.rs/actix-connect/" categories = ["network-programming", "asynchronous"] license = "MIT/Apache-2.0" exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"] diff --git a/actix-utils/src/order.rs b/actix-utils/src/order.rs index 33efa025..f4cebfa0 100644 --- a/actix-utils/src/order.rs +++ b/actix-utils/src/order.rs @@ -263,6 +263,7 @@ mod tests { .and_then(move |res: Vec<_>| { assert_eq!(res, vec![1, 2, 3]); let _ = tx_stop.send(()); + actix_rt::System::current().stop(); Ok(()) }) }));