Skip to content

Commit 7b9c3a3

Browse files
committed
Release 0.3.0
1 parent ff89261 commit 7b9c3a3

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
## [0.3.0] - 2018-07-24
11+
1012
### Added
1113

1214
- Implemented support for the `extensions` field on errors from the June 2018 spec (#64).
15+
- Improved documentation crate docs, added doctests and examples
1316

1417
### Fixed
1518

1619
- `Location` fields on errors were not public.
1720
- The field names on input objects were not properly converted between snake and camel case.
1821

19-
2022
### Changed
2123

2224
- `serde_json` is now a dependency, because the `extensions` field on errors can be contain arbitrary JSON.

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.2.0"
3+
version = "0.3.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Typed GraphQL requests and responses"
66
repository = "https://github.com/tomhoule/graphql-client"
@@ -11,7 +11,7 @@ categories = ["network-programming", "web-programming", "wasm"]
1111
[dependencies]
1212
failure = "0.1"
1313
quote = "0.3"
14-
graphql_query_derive = {path = "./graphql_query_derive", version = "0.2.0"}
14+
graphql_query_derive = {path = "./graphql_query_derive", version = "0.3.0"}
1515
graphql-parser = "0.2.0"
1616
serde = "1.0"
1717
serde_derive = "1.0"

graphql_client_cli/Cargo.toml

+2-2
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 (WIP)"
4-
version = "0.2.0"
4+
version = "0.3.0"
55
authors = ["Tom Houlé <[email protected]>"]
66
license = "Apache-2.0 OR MIT"
77

@@ -12,7 +12,7 @@ path = "src/main.rs"
1212
[dependencies]
1313
failure = "0.1"
1414
reqwest = "0.8"
15-
graphql_client = { version = "0.2.0", path = ".." }
15+
graphql_client = { version = "0.3.0", path = ".." }
1616
structopt = "0.2"
1717
serde = "1.0"
1818
serde_derive = "1.0"

graphql_query_derive/Cargo.toml

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

0 commit comments

Comments
 (0)