From 77d4c90b23d88a56a5c1dac2ffa525dd40d2489e Mon Sep 17 00:00:00 2001 From: tyranron Date: Wed, 2 Feb 2022 20:08:41 +0200 Subject: [PATCH] Bump up `juniper` and `juniper_codegen` version to 0.16.0-dev to disambiguate release automation on CI --- juniper/Cargo.toml | 4 ++-- juniper_actix/Cargo.toml | 4 ++-- juniper_codegen/Cargo.toml | 4 ++-- juniper_graphql_ws/Cargo.toml | 2 +- juniper_hyper/Cargo.toml | 4 ++-- juniper_iron/Cargo.toml | 4 ++-- juniper_rocket/Cargo.toml | 4 ++-- juniper_subscriptions/Cargo.toml | 2 +- juniper_warp/Cargo.toml | 4 ++-- 9 files changed, 16 insertions(+), 16 deletions(-) diff --git a/juniper/Cargo.toml b/juniper/Cargo.toml index 34feeff3..449e60d4 100644 --- a/juniper/Cargo.toml +++ b/juniper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "juniper" -version = "0.15.9" +version = "0.16.0-dev" authors = [ "Magnus Hallin ", "Christoph Herzog ", @@ -32,7 +32,7 @@ scalar-naivetime = [] schema-language = ["graphql-parser-integration"] [dependencies] -juniper_codegen = { version = "0.15.9", path = "../juniper_codegen" } +juniper_codegen = { version = "0.16.0-dev", path = "../juniper_codegen" } anyhow = { version = "1.0.32", optional = true, default-features = false } async-trait = "0.1.39" diff --git a/juniper_actix/Cargo.toml b/juniper_actix/Cargo.toml index fc0b637b..862fbbb2 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.14" actix-web-actors = "4.0.0-beta.8" -juniper = { version = "0.15.9", path = "../juniper", default-features = false } +juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false } juniper_graphql_ws = { version = "0.3.0", path = "../juniper_graphql_ws", optional = true } anyhow = "1.0" @@ -36,7 +36,7 @@ tokio = "1.0" async-stream = "0.3" actix-test = "0.1.0-beta.8" -juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] } bytes = "1.0" env_logger = "0.9" diff --git a/juniper_codegen/Cargo.toml b/juniper_codegen/Cargo.toml index ae5c0642..4f8ad1c9 100644 --- a/juniper_codegen/Cargo.toml +++ b/juniper_codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "juniper_codegen" -version = "0.15.9" +version = "0.16.0-dev" edition = "2018" authors = [ "Magnus Hallin ", @@ -27,4 +27,4 @@ url = "2.0" [dev-dependencies] derive_more = "0.99.7" futures = "0.3" -juniper = { version = "0.15.9", path = "../juniper" } +juniper = { version = "0.16.0-dev", path = "../juniper" } diff --git a/juniper_graphql_ws/Cargo.toml b/juniper_graphql_ws/Cargo.toml index d24b8554..f0906244 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.9", path = "../juniper", default-features = false } +juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false } juniper_subscriptions = { version = "0.16.0", 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 e4e0f0e6..97ba5d0a 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.9", path = "../juniper", default-features = false } +juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false } hyper = { version = "0.14", features = ["server", "runtime"] } serde_json = "1.0" tokio = "1.0" url = "2.0" [dev-dependencies] -juniper = { version = "0.15.7", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] } pretty_env_logger = "0.4" reqwest = { version = "0.11", features = ["blocking", "rustls-tls"] } tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } diff --git a/juniper_iron/Cargo.toml b/juniper_iron/Cargo.toml index 46239046..831d7599 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.9", path = "../juniper" } +juniper = { version = "0.16.0-dev", path = "../juniper" } iron = ">= 0.5, < 0.7" serde_json = "1.0.2" urlencoded = ">= 0.5, < 0.7" [dev-dependencies] -juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.16.0-dev", 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 5b4562b9..08be804f 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.9", path = "../juniper", default-features = false } +juniper = { version = "0.16.0-dev", 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.9", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] } diff --git a/juniper_subscriptions/Cargo.toml b/juniper_subscriptions/Cargo.toml index 2fe50ac3..d7cdf7b4 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.9", path = "../juniper", default-features = false } +juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false } [dev-dependencies] serde_json = "1.0" diff --git a/juniper_warp/Cargo.toml b/juniper_warp/Cargo.toml index 0cde5abb..0950be37 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.9", path = "../juniper", default-features = false } +juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false } juniper_graphql_ws = { version = "0.3.0", 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.9" -juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] } log = "0.4" percent-encoding = "2.1" tokio = { version = "1", features = ["macros", "rt-multi-thread"] }