From b2a3b097bd938e7c80558f6b82759d66b9149422 Mon Sep 17 00:00:00 2001 From: Christian Legnitto Date: Sat, 12 Dec 2020 09:48:31 -1000 Subject: [PATCH] Release juniper 0.15.1 --- juniper/CHANGELOG.md | 4 ++++ juniper/Cargo.toml | 2 +- juniper/src/lib.rs | 2 +- juniper_actix/Cargo.toml | 4 ++-- juniper_codegen/Cargo.toml | 2 +- juniper_graphql_ws/Cargo.toml | 2 +- juniper_hyper/Cargo.toml | 4 ++-- juniper_iron/Cargo.toml | 4 ++-- juniper_rocket/Cargo.toml | 4 ++-- juniper_rocket_async/Cargo.toml | 4 ++-- juniper_subscriptions/Cargo.toml | 2 +- juniper_warp/Cargo.toml | 4 ++-- 12 files changed, 21 insertions(+), 17 deletions(-) diff --git a/juniper/CHANGELOG.md b/juniper/CHANGELOG.md index 5a28a398..047bc679 100644 --- a/juniper/CHANGELOG.md +++ b/juniper/CHANGELOG.md @@ -1,5 +1,9 @@ # master +- No changes yet + +# [[0.15.1] 2020-12-12](https://github.com/graphql-rust/juniper/releases/tag/juniper-0.15.1) + - Support `Arc` in input and output objects. ([#822](https://github.com/graphql-rust/juniper/pull/822)) # [[0.15.0] 2020-12-09](https://github.com/graphql-rust/juniper/releases/tag/juniper-0.15.0) diff --git a/juniper/Cargo.toml b/juniper/Cargo.toml index 1a478619..021c9c40 100644 --- a/juniper/Cargo.toml +++ b/juniper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "juniper" -version = "0.15.0" +version = "0.15.1" authors = [ "Magnus Hallin ", "Christoph Herzog ", diff --git a/juniper/src/lib.rs b/juniper/src/lib.rs index 9528463f..a3a3b4f5 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.0")] +#![doc(html_root_url = "https://docs.rs/juniper/0.15.1")] #![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 92f6dff0..2439f698 100644 --- a/juniper_actix/Cargo.toml +++ b/juniper_actix/Cargo.toml @@ -16,7 +16,7 @@ actix = "0.10" actix-web = "3.3" actix-web-actors = "3.0" -juniper = { version = "0.15.0", path = "../juniper", default-features = false } +juniper = { version = "0.15.1", path = "../juniper", default-features = false } juniper_graphql_ws = { version = "0.2.0", path = "../juniper_graphql_ws", optional = true } anyhow = "1.0" @@ -31,7 +31,7 @@ actix-rt = "1.1" actix-cors = "0.5" actix-identity = "0.3" -juniper = { version = "0.15.0", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.15.1", path = "../juniper", features = ["expose-test-schema"] } bytes = "0.6" env_logger = "0.8" diff --git a/juniper_codegen/Cargo.toml b/juniper_codegen/Cargo.toml index d3a2b889..de481d73 100644 --- a/juniper_codegen/Cargo.toml +++ b/juniper_codegen/Cargo.toml @@ -26,4 +26,4 @@ syn = { version = "1.0.3", features = ["extra-traits", "full", "parsing"], defau [dev-dependencies] derive_more = "0.99.7" futures = "0.3" -juniper = { version = "0.15.0", path = "../juniper" } +juniper = { version = "0.15.1", path = "../juniper" } diff --git a/juniper_graphql_ws/Cargo.toml b/juniper_graphql_ws/Cargo.toml index 4367af35..f5973465 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.0", path = "../juniper", default-features = false } +juniper = { version = "0.15.1", path = "../juniper", default-features = false } juniper_subscriptions = { version = "0.15.0", 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_hyper/Cargo.toml b/juniper_hyper/Cargo.toml index ba8bf2f1..22300194 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.0", path = "../juniper", default-features = false } +juniper = { version = "0.15.1", path = "../juniper", default-features = false } hyper = "0.13" serde_json = "1.0" tokio = "0.2" url = "2" [dev-dependencies] -juniper = { version = "0.15.0", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.15.1", path = "../juniper", features = ["expose-test-schema"] } pretty_env_logger = "0.4" reqwest = { version = "0.10", features = ["blocking", "rustls-tls"] } tokio = { version = "0.2", features = ["macros"] } diff --git a/juniper_iron/Cargo.toml b/juniper_iron/Cargo.toml index e86bfd82..6b909973 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.0", path = "../juniper" } +juniper = { version = "0.15.1", path = "../juniper" } iron = ">= 0.5, < 0.7" serde_json = "1.0.2" urlencoded = ">= 0.5, < 0.7" [dev-dependencies] -juniper = { version = "0.15.0", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.15.1", 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 414e98eb..9d0a46b3 100644 --- a/juniper_rocket/Cargo.toml +++ b/juniper_rocket/Cargo.toml @@ -12,9 +12,9 @@ documentation = "https://docs.rs/juniper_rocket" repository = "https://github.com/graphql-rust/juniper" [dependencies] -juniper = { version = "0.15.0", path = "../juniper", default-features = false} +juniper = { version = "0.15.1", path = "../juniper", default-features = false} rocket = { version = "0.4.2", default-features = false } serde_json = "1.0.2" [dev-dependencies] -juniper = { version = "0.15.0", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.15.1", path = "../juniper", features = ["expose-test-schema"] } diff --git a/juniper_rocket_async/Cargo.toml b/juniper_rocket_async/Cargo.toml index e3b68182..9981d071 100644 --- a/juniper_rocket_async/Cargo.toml +++ b/juniper_rocket_async/Cargo.toml @@ -13,10 +13,10 @@ repository = "https://github.com/graphql-rust/juniper" [dependencies] futures = "0.3.1" -juniper = { version = "0.15.0", path = "../juniper", default-features = false } +juniper = { version = "0.15.1", path = "../juniper", default-features = false } rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master", default-features = false } serde_json = "1.0.2" tokio = { version = "0.2", features = ["macros", "rt-core"] } [dev-dependencies] -juniper = { version = "0.15.0", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.15.1", path = "../juniper", features = ["expose-test-schema"] } diff --git a/juniper_subscriptions/Cargo.toml b/juniper_subscriptions/Cargo.toml index a8b11ab3..fcad4811 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.0", path = "../juniper", default-features = false } +juniper = { version = "0.15.1", path = "../juniper", default-features = false } [dev-dependencies] serde_json = "1.0" diff --git a/juniper_warp/Cargo.toml b/juniper_warp/Cargo.toml index 73e94b46..e2b50cd5 100644 --- a/juniper_warp/Cargo.toml +++ b/juniper_warp/Cargo.toml @@ -15,7 +15,7 @@ subscriptions = ["juniper_graphql_ws"] anyhow = "1.0" bytes = "0.5" futures = "0.3.1" -juniper = { version = "0.15.0", path = "../juniper", default-features = false } +juniper = { version = "0.15.1", path = "../juniper", default-features = false } juniper_graphql_ws = { version = "0.2.0", path = "../juniper_graphql_ws", optional = true } serde = { version = "1.0.75", features = ["derive"] } serde_json = "1.0.24" @@ -25,7 +25,7 @@ warp = "0.2" [dev-dependencies] env_logger = "0.8" -juniper = { version = "0.15.0", path = "../juniper", features = ["expose-test-schema"] } +juniper = { version = "0.15.1", path = "../juniper", features = ["expose-test-schema"] } log = "0.4" percent-encoding = "2.1" tokio = { version = "0.2", features = ["blocking", "macros", "rt-core"] }