Skip to content

Commit 7b13929

Browse files
committed
Release 0.5.1
1 parent 1b66062 commit 7b13929

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.5.1 (2018-10-07)
11+
1012
### Added
1113

1214
- Better error messages from the derive macro stwhen the schema or the query file path is not found.
@@ -15,7 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1517

1618
- Support both full introspection responses (with "data") field and just the content of the "data" field in schema.json files.
1719

18-
## 0.5.0
20+
## 0.5.0 (2018-10-03)
1921

2022
### Added
2123

graphql_client/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql_client"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Typed GraphQL requests and responses"
66
repository = "https://github.com/graphql-rust/graphql-client"
@@ -10,8 +10,8 @@ categories = ["network-programming", "web-programming", "wasm"]
1010

1111
[dependencies]
1212
failure = "0.1"
13-
graphql_query_derive = {path = "../graphql_query_derive", version = "0.5.0"}
13+
graphql_query_derive = {path = "../graphql_query_derive", version = "0.5.1"}
1414
itertools = "0.7"
1515
serde = "^1.0.78"
1616
serde_derive = "1.0"
17-
serde_json = "1.0"
17+
serde_json = "1.0"

graphql_client_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ path = "src/main.rs"
1313
failure = "0.1"
1414
reqwest = "^0.9.0"
1515
graphql_client = { version = "0.5.0", path = "../graphql_client" }
16-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.5.0" }
16+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.5.1" }
1717
structopt = "0.2"
1818
serde = "1.0"
1919
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.5.0"
3+
version = "0.5.1"
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

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.5.0"
3+
version = "0.5.1"
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
failure = "0.1"
1414
syn = "0.15"
1515
proc-macro2 = { version = "0.4", features = [] }
16-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.5.0" }
16+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.5.1" }

0 commit comments

Comments
 (0)