Skip to content

Commit d147828

Browse files
committed
Release 0.11.0
1 parent 7b3a519 commit d147828

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

graphql_client/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql_client"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Typed GraphQL requests and responses"
66
repository = "https://github.com/graphql-rust/graphql-client"
@@ -19,7 +19,7 @@ serde = { version = "^1.0.78", features = ["derive"] }
1919
serde_json = "1.0"
2020

2121
# Optional dependencies
22-
graphql_query_derive = { path = "../graphql_query_derive", version = "0.10.0", optional = true }
22+
graphql_query_derive = { path = "../graphql_query_derive", version = "0.11.0", optional = true }
2323
reqwest-crate = { package = "reqwest", version = "^0.11", features = ["json"], default-features = false, optional = true }
2424

2525
[features]

graphql_client_cli/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "graphql_client_cli"
33
description = "The CLI for graphql-client"
4-
version = "0.10.0"
4+
version = "0.11.0"
55
authors = ["Tom Houlé <[email protected]>"]
66
license = "Apache-2.0 OR MIT"
77
repository = "https://github.com/graphql-rust/graphql-client"
@@ -13,8 +13,8 @@ path = "src/main.rs"
1313

1414
[dependencies]
1515
reqwest = { version = "^0.11", features = ["json", "blocking"] }
16-
graphql_client = { version = "0.10.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
17-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.10.0" }
16+
graphql_client = { version = "0.11.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
17+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.11.0" }
1818
clap = { version = "^3.0", features = ["derive"] }
1919
serde = { version = "^1.0", features = ["derive"] }
2020
serde_json = "^1.0"

graphql_client_codegen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql_client_codegen"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Utility crate for graphql_client"
66
license = "Apache-2.0 OR MIT"

graphql_query_derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql_query_derive"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Utility crate for graphql_client"
66
license = "Apache-2.0 OR MIT"
@@ -13,4 +13,4 @@ proc-macro = true
1313
[dependencies]
1414
syn = { version = "^1.0", features = ["extra-traits"] }
1515
proc-macro2 = { version = "^1.0", features = [] }
16-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.10.0" }
16+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.11.0" }

0 commit comments

Comments
 (0)