diff --git a/juniper_graphql_ws/Cargo.toml b/juniper_graphql_ws/Cargo.toml index 99ad8a7e..c0e5c8d1 100644 --- a/juniper_graphql_ws/Cargo.toml +++ b/juniper_graphql_ws/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["apollo", "graphql", "graphql-ws", "juniper"] [dependencies] juniper = { version = "0.15.4", path = "../juniper", default-features = false } -juniper_subscriptions = { version = "0.15.3", path = "../juniper_subscriptions" } +juniper_subscriptions = { version = "0.15.4", path = "../juniper_subscriptions" } serde = { version = "1.0.8", features = ["derive"], default-features = false } tokio = { version = "0.2", features = ["macros", "rt-core", "time"], default-features = false } diff --git a/juniper_subscriptions/Cargo.toml b/juniper_subscriptions/Cargo.toml index d82cde58..00322c32 100644 --- a/juniper_subscriptions/Cargo.toml +++ b/juniper_subscriptions/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "juniper_subscriptions" -version = "0.15.3" +version = "0.15.4" edition = "2018" authors = ["nWacky "] description = "Juniper SubscriptionCoordinator and SubscriptionConnection implementations" diff --git a/juniper_subscriptions/src/lib.rs b/juniper_subscriptions/src/lib.rs index b26cb157..80f1321a 100644 --- a/juniper_subscriptions/src/lib.rs +++ b/juniper_subscriptions/src/lib.rs @@ -9,7 +9,7 @@ #![deny(missing_docs)] #![deny(warnings)] -#![doc(html_root_url = "https://docs.rs/juniper_subscriptions/0.15.3")] +#![doc(html_root_url = "https://docs.rs/juniper_subscriptions/0.15.4")] use std::{ iter::FromIterator,