Skip to content

Commit 3cac104

Browse files
committed
Merge branch '2018-edition' of ssh://github.com/h-michael/graphql-client into 2018-edition
2 parents 279815a + d8e5519 commit 3cac104

File tree

6 files changed

+16
-10
lines changed

6 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
## 0.8.0
11+
12+
This release is only compatible with Rust 1.31.0 and later.
13+
14+
## 0.7.1
15+
1016
### Fixed
1117

1218
- In the CLI, both --selected-operation and --output used the -o shorthand. --output now uses -out.

graphql_client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql_client"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Typed GraphQL requests and responses"
66
repository = "https://github.com/graphql-rust/graphql-client"
@@ -11,7 +11,7 @@ edition = "2018"
1111

1212
[dependencies]
1313
failure = "0.1"
14-
graphql_query_derive = {path = "../graphql_query_derive", version = "0.7.0" }
14+
graphql_query_derive = {path = "../graphql_query_derive", version = "0.8.0" }
1515
serde = "^1.0.78"
1616
serde_derive = "1.0"
1717
serde_json = "1.0"

graphql_client_cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.7.1"
4+
version = "0.8.0"
55
authors = ["Tom Houlé <[email protected]>"]
66
license = "Apache-2.0 OR MIT"
77
repository = "https://github.com/graphql-rust/graphql-client"
@@ -14,8 +14,8 @@ path = "src/main.rs"
1414
[dependencies]
1515
failure = "0.1"
1616
reqwest = "^0.9.0"
17-
graphql_client = { version = "0.7.0", path = "../graphql_client" }
18-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.7.0" }
17+
graphql_client = { version = "0.8.0", path = "../graphql_client" }
18+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.8.0" }
1919
structopt = "0.2"
2020
serde = "1.0"
2121
serde_derive = "1.0"

graphql_client_codegen/Cargo.toml

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

graphql_client_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 = "graphql_client_web"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
edition = "2018"
66
description = "Typed GraphQL requests and responses (web integration)"
@@ -14,7 +14,7 @@ crate-type = ["cdylib", "rlib"]
1414

1515
[dependencies]
1616
failure = "0.1.2"
17-
graphql_client = { path = "../graphql_client", version = "0.7.0" }
17+
graphql_client = { path = "../graphql_client", version = "0.8.0" }
1818
log = "0.4.5"
1919
serde_json = "1.0.32"
2020
wasm-bindgen = "0.2.29"

graphql_query_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 = "graphql_query_derive"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Utility crate for graphql_client"
66
license = "Apache-2.0 OR MIT"
@@ -14,4 +14,4 @@ proc-macro = true
1414
failure = "0.1"
1515
syn = { version = "0.15.20", features = ["extra-traits"] }
1616
proc-macro2 = { version = "0.4", features = [] }
17-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.7.0" }
17+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.8.0" }

0 commit comments

Comments
 (0)