From c0c03449ab6d2517bd2b29e12ba78a046bc02a8c Mon Sep 17 00:00:00 2001 From: Sunli Date: Fri, 9 Sep 2022 18:48:59 +0800 Subject: [PATCH] Release 4.0.13 async-graphql@4.0.13 async-graphql-actix-web@4.0.13 async-graphql-axum@4.0.13 async-graphql-derive@4.0.13 async-graphql-parser@4.0.13 async-graphql-poem@4.0.13 async-graphql-rocket@4.0.13 async-graphql-tide@4.0.13 async-graphql-value@4.0.13 async-graphql-warp@4.0.13 Generated by cargo-workspaces --- CHANGELOG.md | 2 +- Cargo.toml | 8 ++++---- derive/Cargo.toml | 4 ++-- integrations/actix-web/Cargo.toml | 4 ++-- integrations/axum/Cargo.toml | 4 ++-- integrations/poem/Cargo.toml | 4 ++-- integrations/rocket/Cargo.toml | 4 ++-- integrations/tide/Cargo.toml | 4 ++-- integrations/warp/Cargo.toml | 4 ++-- parser/Cargo.toml | 4 ++-- value/Cargo.toml | 2 +- 11 files changed, 22 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 419ca495..06d4b740 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -# [4.0.13] 2022-09-06 +# [4.0.13] 2022-09-09 - Compare to expected schema [#1048](https://github.com/async-graphql/async-graphql/pull/1048) - docs: readme flair [#1054](https://github.com/async-graphql/async-graphql/pull/1054) diff --git a/Cargo.toml b/Cargo.toml index 34d83b8b..2a38c62e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT/Apache-2.0" name = "async-graphql" readme = "README.md" repository = "https://github.com/async-graphql/async-graphql" -version = "4.0.12" +version = "4.0.13" [features] apollo_persisted_queries = ["lru", "sha2"] @@ -28,9 +28,9 @@ tracing = ["tracinglib", "tracing-futures"] unblock = ["blocking"] [dependencies] -async-graphql-derive = { path = "derive", version = "4.0.12" } -async-graphql-parser = { path = "parser", version = "4.0.12" } -async-graphql-value = { path = "value", version = "4.0.12" } +async-graphql-derive = { path = "derive", version = "4.0.13" } +async-graphql-parser = { path = "parser", version = "4.0.13" } +async-graphql-value = { path = "value", version = "4.0.13" } async-stream = "0.3.0" async-trait = "0.1.48" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index b5df090b..d3d0d7b0 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -9,13 +9,13 @@ keywords = ["futures", "async", "graphql"] license = "MIT/Apache-2.0" name = "async-graphql-derive" repository = "https://github.com/async-graphql/async-graphql" -version = "4.0.12" +version = "4.0.13" [lib] proc-macro = true [dependencies] -async-graphql-parser = { path = "../parser", version = "4.0.12" } +async-graphql-parser = { path = "../parser", version = "4.0.13" } Inflector = "0.11.4" darling = "0.14.0" diff --git a/integrations/actix-web/Cargo.toml b/integrations/actix-web/Cargo.toml index 33d2d10e..a3f5474a 100644 --- a/integrations/actix-web/Cargo.toml +++ b/integrations/actix-web/Cargo.toml @@ -9,10 +9,10 @@ keywords = ["futures", "async", "graphql"] license = "MIT/Apache-2.0" name = "async-graphql-actix-web" repository = "https://github.com/async-graphql/async-graphql" -version = "4.0.12" +version = "4.0.13" [dependencies] -async-graphql = { path = "../..", version = "4.0.12", default-features = false } +async-graphql = { path = "../..", version = "4.0.13", default-features = false } actix = "0.13.0" actix-http = "3.1.0" diff --git a/integrations/axum/Cargo.toml b/integrations/axum/Cargo.toml index 52e26835..98cbf9f3 100644 --- a/integrations/axum/Cargo.toml +++ b/integrations/axum/Cargo.toml @@ -9,10 +9,10 @@ keywords = ["futures", "async", "graphql", "axum"] license = "MIT/Apache-2.0" name = "async-graphql-axum" repository = "https://github.com/async-graphql/async-graphql" -version = "4.0.12" +version = "4.0.13" [dependencies] -async-graphql = { path = "../..", version = "4.0.12", default-features = false } +async-graphql = { path = "../..", version = "4.0.13", default-features = false } async-trait = "0.1.51" axum = { version = "0.5.1", features = ["ws", "headers"] } diff --git a/integrations/poem/Cargo.toml b/integrations/poem/Cargo.toml index 2f4eb4ab..3b49465c 100644 --- a/integrations/poem/Cargo.toml +++ b/integrations/poem/Cargo.toml @@ -9,10 +9,10 @@ keywords = ["futures", "async", "graphql", "poem"] license = "MIT/Apache-2.0" name = "async-graphql-poem" repository = "https://github.com/async-graphql/async-graphql" -version = "4.0.12" +version = "4.0.13" [dependencies] -async-graphql = { path = "../..", version = "4.0.12", default-features = false } +async-graphql = { path = "../..", version = "4.0.13", default-features = false } futures-util = { version = "0.3.0", default-features = false } poem = { version = "1.3.0", features = ["websocket"] } diff --git a/integrations/rocket/Cargo.toml b/integrations/rocket/Cargo.toml index 96401c23..81620439 100644 --- a/integrations/rocket/Cargo.toml +++ b/integrations/rocket/Cargo.toml @@ -9,10 +9,10 @@ keywords = ["futures", "async", "graphql", "rocket"] license = "MIT/Apache-2.0" name = "async-graphql-rocket" repository = "https://github.com/async-graphql/async-graphql" -version = "4.0.12" +version = "4.0.13" [dependencies] -async-graphql = { path = "../..", version = "4.0.12", default-features = false } +async-graphql = { path = "../..", version = "4.0.13", default-features = false } rocket = { version = "0.5.0-rc.2", default-features = false } serde = "1.0.126" diff --git a/integrations/tide/Cargo.toml b/integrations/tide/Cargo.toml index 76493d1a..f8879b03 100644 --- a/integrations/tide/Cargo.toml +++ b/integrations/tide/Cargo.toml @@ -9,14 +9,14 @@ keywords = ["futures", "async", "graphql"] license = "MIT/Apache-2.0" name = "async-graphql-tide" repository = "https://github.com/async-graphql/async-graphql" -version = "4.0.12" +version = "4.0.13" [features] default = ["websocket"] websocket = ["tide-websockets"] [dependencies] -async-graphql = { path = "../..", version = "4.0.12", default-features = false } +async-graphql = { path = "../..", version = "4.0.13", default-features = false } async-trait = "0.1.48" futures-util = "0.3.0" diff --git a/integrations/warp/Cargo.toml b/integrations/warp/Cargo.toml index a76c3dee..8151c75c 100644 --- a/integrations/warp/Cargo.toml +++ b/integrations/warp/Cargo.toml @@ -9,10 +9,10 @@ keywords = ["futures", "async", "graphql"] license = "MIT/Apache-2.0" name = "async-graphql-warp" repository = "https://github.com/async-graphql/async-graphql" -version = "4.0.12" +version = "4.0.13" [dependencies] -async-graphql = { path = "../..", version = "4.0.12", default-features = false } +async-graphql = { path = "../..", version = "4.0.13", default-features = false } futures-util = { version = "0.3.0", default-features = false, features = [ "sink", diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 3ddba560..1a8b5479 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -9,10 +9,10 @@ keywords = ["futures", "async", "graphql"] license = "MIT/Apache-2.0" name = "async-graphql-parser" repository = "https://github.com/async-graphql/async-graphql" -version = "4.0.12" +version = "4.0.13" [dependencies] -async-graphql-value = { path = "../value", version = "4.0.12" } +async-graphql-value = { path = "../value", version = "4.0.13" } pest = "2.2.1" serde = { version = "1.0.125", features = ["derive"] } serde_json = "1.0.64" diff --git a/value/Cargo.toml b/value/Cargo.toml index be3343f4..c6ecdf94 100644 --- a/value/Cargo.toml +++ b/value/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-graphql-value" -version = "4.0.12" +version = "4.0.13" authors = ["sunli ", "Koxiaet"] edition = "2021" description = "GraphQL value for async-graphql"