Skip to content

Commit 132f740

Browse files
committed
Release 2.9.2
async-graphql@2.9.2 async-graphql-actix-web@2.9.2 async-graphql-derive@2.9.2 async-graphql-parser@2.9.2 async-graphql-tide@2.9.2 async-graphql-value@2.9.2 async-graphql-warp@2.9.2 Generated by cargo-workspaces
1 parent ea10d16 commit 132f740

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-graphql"
3-
version = "2.9.1"
3+
version = "2.9.2"
44
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
55
edition = "2018"
66
description = "A GraphQL server library implemented in Rust"
@@ -22,9 +22,9 @@ dataloader = ["futures-timer", "futures-channel", "lru"]
2222
tracing = ["tracinglib", "tracing-futures"]
2323

2424
[dependencies]
25-
async-graphql-derive = { path = "derive", version = "=2.9.1" }
26-
async-graphql-value = { path = "value", version = "=2.9.1" }
27-
async-graphql-parser = { path = "parser", version = "=2.9.1" }
25+
async-graphql-derive = { path = "derive", version = "=2.9.2" }
26+
async-graphql-value = { path = "value", version = "=2.9.2" }
27+
async-graphql-parser = { path = "parser", version = "=2.9.2" }
2828

2929
async-stream = "0.3.0"
3030
async-trait = "0.1.48"

derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-graphql-derive"
3-
version = "2.9.1"
3+
version = "2.9.2"
44
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
55
edition = "2018"
66
description = "Macros for async-graphql"
@@ -15,7 +15,7 @@ categories = ["network-programming", "asynchronous"]
1515
proc-macro = true
1616

1717
[dependencies]
18-
async-graphql-parser = { path = "../parser", version = "=2.9.1" }
18+
async-graphql-parser = { path = "../parser", version = "=2.9.2" }
1919
proc-macro2 = "1.0.24"
2020
syn = { version = "1.0.64", features = ["full", "extra-traits", "visit-mut", "visit"] }
2121
quote = "1.0.9"

integrations/actix-web/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-graphql-actix-web"
3-
version = "2.9.1"
3+
version = "2.9.2"
44
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
55
edition = "2018"
66
description = "async-graphql for actix-web"
@@ -12,7 +12,7 @@ keywords = ["futures", "async", "graphql"]
1212
categories = ["network-programming", "asynchronous"]
1313

1414
[dependencies]
15-
async-graphql = { path = "../..", version = "=2.9.1" }
15+
async-graphql = { path = "../..", version = "=2.9.2" }
1616

1717
actix = "0.10.0"
1818
actix-http = "2.2.0"

integrations/rocket/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ keywords = ["futures", "async", "graphql", "rocket"]
1414
categories = ["network-programming", "asynchronous"]
1515

1616
[dependencies]
17-
async-graphql = { path = "../..", version = "=2.9.1" }
17+
async-graphql = { path = "../..", version = "=2.9.2" }
1818

1919
rocket = { git = "https://github.com/SergioBenitez/Rocket", rev = "fa3e033", default-features = false } # TODO: Change to Cargo crate when Rocket 0.5.0 is released
2020
serde = "1.0.126"

integrations/tide/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-graphql-tide"
3-
version = "2.9.1"
3+
version = "2.9.2"
44
authors = ["vkill <vkill.net@gmail.com>"]
55
edition = "2018"
66
description = "async-graphql for tide"
@@ -12,7 +12,7 @@ keywords = ["futures", "async", "graphql"]
1212
categories = ["network-programming", "asynchronous"]
1313

1414
[dependencies]
15-
async-graphql = { path = "../..", version = "=2.9.1" }
15+
async-graphql = { path = "../..", version = "=2.9.2" }
1616
async-trait = "0.1.48"
1717
futures-util = "0.3.13"
1818
serde_json = "1.0.64"

integrations/warp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-graphql-warp"
3-
version = "2.9.1"
3+
version = "2.9.2"
44
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
55
edition = "2018"
66
description = "async-graphql for warp"
@@ -12,7 +12,7 @@ keywords = ["futures", "async", "graphql"]
1212
categories = ["network-programming", "asynchronous"]
1313

1414
[dependencies]
15-
async-graphql = { path = "../..", version = "=2.9.1" }
15+
async-graphql = { path = "../..", version = "=2.9.2" }
1616

1717
warp = { version = "0.3.0", default-features = false, features = ["websocket"] }
1818
futures-util = { version = "0.3.13", default-features = false, features = ["sink"] }

parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-graphql-parser"
3-
version = "2.9.1"
3+
version = "2.9.2"
44
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
55
edition = "2018"
66
description = "GraphQL query parser for async-graphql"
@@ -12,7 +12,7 @@ keywords = ["futures", "async", "graphql"]
1212
categories = ["network-programming", "asynchronous"]
1313

1414
[dependencies]
15-
async-graphql-value = { path = "../value", version = "=2.9.1" }
15+
async-graphql-value = { path = "../value", version = "=2.9.2" }
1616
pest = "2.1.3"
1717
pest_derive = "2.1.0"
1818
serde_json = "1.0.64"

value/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-graphql-value"
3-
version = "2.9.1"
3+
version = "2.9.2"
44
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
55
edition = "2018"
66
description = "GraphQL value for async-graphql"

0 commit comments

Comments
 (0)