diff --git a/juniper/Cargo.toml b/juniper/Cargo.toml index 50f34cef..3b083370 100644 --- a/juniper/Cargo.toml +++ b/juniper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "juniper" -version = "0.15.8" +version = "0.15.9" authors = [ "Magnus Hallin ", "Christoph Herzog ", diff --git a/juniper/src/lib.rs b/juniper/src/lib.rs index c6eb1fcd..85b0bafb 100644 --- a/juniper/src/lib.rs +++ b/juniper/src/lib.rs @@ -90,7 +90,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected. [bson]: https://crates.io/crates/bson */ -#![doc(html_root_url = "https://docs.rs/juniper/0.15.8")] +#![doc(html_root_url = "https://docs.rs/juniper/0.15.9")] #![warn(missing_docs)] // Required for using `juniper_codegen` macros inside this crate to resolve absolute `::juniper` diff --git a/juniper_actix/Cargo.toml b/juniper_actix/Cargo.toml index 9192646e..c59e0dfa 100644 --- a/juniper_actix/Cargo.toml +++ b/juniper_actix/Cargo.toml @@ -18,7 +18,7 @@ http = "0.2.4" actix-web = "4.0.0-beta.8" actix-web-actors = "4.0.0-beta.6" -juniper = { version = "0.15.8", path = "../juniper", default-features = false } +juniper = { version = "0.15.9", path = "../juniper", default-features = false } juniper_graphql_ws = { version = "0.2.6", path = "../juniper_graphql_ws", optional = true } anyhow = "1.0" @@ -35,7 +35,7 @@ tokio = "1" async-stream = "0.3" actix-test = "0.1.0-beta.3" -juniper = { version = "0.15.8", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] } bytes = "1.0" env_logger = "0.8" diff --git a/juniper_codegen/Cargo.toml b/juniper_codegen/Cargo.toml index 80717300..dfe54e63 100644 --- a/juniper_codegen/Cargo.toml +++ b/juniper_codegen/Cargo.toml @@ -26,4 +26,4 @@ syn = { version = "1.0.60", features = ["extra-traits", "full", "parsing"], defa [dev-dependencies] derive_more = "0.99.7" futures = "0.3" -juniper = { version = "0.15.8", path = "../juniper" } +juniper = { version = "0.15.9", path = "../juniper" } diff --git a/juniper_graphql_ws/Cargo.toml b/juniper_graphql_ws/Cargo.toml index 93cf78b8..e7f1ce34 100644 --- a/juniper_graphql_ws/Cargo.toml +++ b/juniper_graphql_ws/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/graphql-rust/juniper" keywords = ["apollo", "graphql", "graphql-ws", "juniper"] [dependencies] -juniper = { version = "0.15.8", path = "../juniper", default-features = false } +juniper = { version = "0.15.9", path = "../juniper", default-features = false } juniper_subscriptions = { version = "0.15.6", path = "../juniper_subscriptions" } serde = { version = "1.0.8", features = ["derive"], default-features = false } tokio = { version = "1", features = ["macros", "rt", "time"], default-features = false } diff --git a/juniper_hyper/Cargo.toml b/juniper_hyper/Cargo.toml index c8b6fd75..d33767d1 100644 --- a/juniper_hyper/Cargo.toml +++ b/juniper_hyper/Cargo.toml @@ -10,14 +10,14 @@ repository = "https://github.com/graphql-rust/juniper" [dependencies] futures = "0.3.1" -juniper = { version = "0.15.8", path = "../juniper", default-features = false } +juniper = { version = "0.15.9", path = "../juniper", default-features = false } hyper = {version = "0.14", features = ["server", "runtime"]} serde_json = "1.0" tokio = "1" url = "2" [dev-dependencies] -juniper = { version = "0.15.8", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] } pretty_env_logger = "0.4" reqwest = { version = "0.11", features = ["blocking", "rustls-tls"] } tokio = { version = "1", features = ["macros", "rt-multi-thread"] } diff --git a/juniper_iron/Cargo.toml b/juniper_iron/Cargo.toml index 8cb88229..29d95d85 100644 --- a/juniper_iron/Cargo.toml +++ b/juniper_iron/Cargo.toml @@ -13,13 +13,13 @@ repository = "https://github.com/graphql-rust/juniper" [dependencies] futures = "0.3.1" -juniper = { version = "0.15.8", path = "../juniper" } +juniper = { version = "0.15.9", path = "../juniper" } iron = ">= 0.5, < 0.7" serde_json = "1.0.2" urlencoded = ">= 0.5, < 0.7" [dev-dependencies] -juniper = { version = "0.15.8", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] } iron-test = "0.6" logger = "0.4" mount = "0.4" diff --git a/juniper_rocket/Cargo.toml b/juniper_rocket/Cargo.toml index 09a25a23..7b68c0a2 100644 --- a/juniper_rocket/Cargo.toml +++ b/juniper_rocket/Cargo.toml @@ -13,9 +13,9 @@ repository = "https://github.com/graphql-rust/juniper" [dependencies] futures = "0.3.1" -juniper = { version = "0.15.8", path = "../juniper", default-features = false } +juniper = { version = "0.15.9", path = "../juniper", default-features = false } rocket = { version = "0.5.0-rc.1", default-features = false } serde_json = "1.0.2" [dev-dependencies] -juniper = { version = "0.15.8", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] } diff --git a/juniper_subscriptions/Cargo.toml b/juniper_subscriptions/Cargo.toml index 472a5e8e..d7bb9781 100644 --- a/juniper_subscriptions/Cargo.toml +++ b/juniper_subscriptions/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/graphql-rust/juniper" [dependencies] futures = "0.3.1" -juniper = { version = "0.15.8", path = "../juniper", default-features = false } +juniper = { version = "0.15.9", path = "../juniper", default-features = false } [dev-dependencies] serde_json = "1.0" diff --git a/juniper_warp/Cargo.toml b/juniper_warp/Cargo.toml index 4fffdba5..11c10449 100644 --- a/juniper_warp/Cargo.toml +++ b/juniper_warp/Cargo.toml @@ -14,7 +14,7 @@ subscriptions = ["juniper_graphql_ws"] [dependencies] anyhow = "1.0" futures = "0.3.1" -juniper = { version = "0.15.8", path = "../juniper", default-features = false } +juniper = { version = "0.15.9", path = "../juniper", default-features = false } juniper_graphql_ws = { version = "0.2.6", path = "../juniper_graphql_ws", optional = true } serde = { version = "1.0.75", features = ["derive"] } serde_json = "1.0.24" @@ -24,7 +24,7 @@ warp = "0.3" [dev-dependencies] env_logger = "0.8" -juniper = { version = "0.15.8", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] } log = "0.4" percent-encoding = "2.1" tokio = { version = "1", features = ["macros", "rt-multi-thread"] }