diff --git a/Cargo.toml b/Cargo.toml index 9b3d903c..7b31b1b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0" name = "async-graphql" readme = "README.md" repository = "https://github.com/async-graphql/async-graphql" -version = "7.0.1" +version = "7.0.2" [features] apollo_persisted_queries = ["lru", "sha2"] @@ -141,10 +141,10 @@ members = [ ] [workspace.dependencies] -async-graphql = { path = ".", version = "7.0.1", default-features = false } -async-graphql-derive = { path = "derive", version = "7.0.1" } -async-graphql-parser = { path = "parser", version = "7.0.1" } -async-graphql-value = { path = "value", version = "7.0.1" } +async-graphql = { path = ".", version = "7.0.2", default-features = false } +async-graphql-derive = { path = "derive", version = "7.0.2" } +async-graphql-parser = { path = "parser", version = "7.0.2" } +async-graphql-value = { path = "value", version = "7.0.2" } serde = { version = "1.0.125", features = ["derive"] } serde_json = "1.0.64" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 7ca09c14..41307567 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"] license = "MIT OR Apache-2.0" name = "async-graphql-derive" repository = "https://github.com/async-graphql/async-graphql" -version = "7.0.1" +version = "7.0.2" [lib] proc-macro = true diff --git a/integrations/actix-web/Cargo.toml b/integrations/actix-web/Cargo.toml index fd859dde..a83ee642 100644 --- a/integrations/actix-web/Cargo.toml +++ b/integrations/actix-web/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"] license = "MIT OR Apache-2.0" name = "async-graphql-actix-web" repository = "https://github.com/async-graphql/async-graphql" -version = "7.0.1" +version = "7.0.2" [dependencies] async-graphql.workspace = true diff --git a/integrations/axum/Cargo.toml b/integrations/axum/Cargo.toml index 8482df93..4cc71075 100644 --- a/integrations/axum/Cargo.toml +++ b/integrations/axum/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql", "axum"] license = "MIT OR Apache-2.0" name = "async-graphql-axum" repository = "https://github.com/async-graphql/async-graphql" -version = "7.0.1" +version = "7.0.2" [dependencies] async-graphql.workspace = true diff --git a/integrations/poem/Cargo.toml b/integrations/poem/Cargo.toml index d4d3fe82..40dc95ee 100644 --- a/integrations/poem/Cargo.toml +++ b/integrations/poem/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql", "poem"] license = "MIT OR Apache-2.0" name = "async-graphql-poem" repository = "https://github.com/async-graphql/async-graphql" -version = "7.0.1" +version = "7.0.2" [dependencies] async-graphql.workspace = true diff --git a/integrations/rocket/Cargo.toml b/integrations/rocket/Cargo.toml index 3505271d..c0ef9ef8 100644 --- a/integrations/rocket/Cargo.toml +++ b/integrations/rocket/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql", "rocket"] license = "MIT OR Apache-2.0" name = "async-graphql-rocket" repository = "https://github.com/async-graphql/async-graphql" -version = "7.0.1" +version = "7.0.2" [dependencies] async-graphql.workspace = true diff --git a/integrations/tide/Cargo.toml b/integrations/tide/Cargo.toml index a40cfedc..b5fbb5f1 100644 --- a/integrations/tide/Cargo.toml +++ b/integrations/tide/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"] license = "MIT OR Apache-2.0" name = "async-graphql-tide" repository = "https://github.com/async-graphql/async-graphql" -version = "7.0.1" +version = "7.0.2" [features] default = ["websocket"] diff --git a/integrations/warp/Cargo.toml b/integrations/warp/Cargo.toml index 549d87d7..09086b9a 100644 --- a/integrations/warp/Cargo.toml +++ b/integrations/warp/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"] license = "MIT OR Apache-2.0" name = "async-graphql-warp" repository = "https://github.com/async-graphql/async-graphql" -version = "7.0.1" +version = "7.0.2" [dependencies] async-graphql.workspace = true diff --git a/parser/Cargo.toml b/parser/Cargo.toml index e575b35d..340e1232 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"] license = "MIT OR Apache-2.0" name = "async-graphql-parser" repository = "https://github.com/async-graphql/async-graphql" -version = "7.0.1" +version = "7.0.2" [dependencies] async-graphql-value.workspace = true diff --git a/value/Cargo.toml b/value/Cargo.toml index 23ccf1f7..f2b2ef96 100644 --- a/value/Cargo.toml +++ b/value/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-graphql-value" -version = "7.0.1" +version = "7.0.2" authors = ["sunli ", "Koxiaet"] edition = "2021" description = "GraphQL value for async-graphql"