Skip to content

Commit 5fde7a7

Browse files
committed
Release 0.5.0
1 parent 09e32d0 commit 5fde7a7

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
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.0
11+
1012
### Added
1113

1214
- Support for `@deprecated` field annotations. You can configure how

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.4.0"
3+
version = "0.5.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Typed GraphQL requests and responses"
66
repository = "https://github.com/tomhoule/graphql-client"
@@ -10,7 +10,7 @@ categories = ["network-programming", "web-programming", "wasm"]
1010

1111
[dependencies]
1212
failure = "0.1"
13-
graphql_query_derive = {path = "./graphql_query_derive", version = "0.4.0"}
13+
graphql_query_derive = {path = "./graphql_query_derive", version = "0.5.0"}
1414
itertools = "0.7"
1515
serde = "^1.0.78"
1616
serde_derive = "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 (WIP)"
4-
version = "0.4.0"
4+
version = "0.5.0"
55
authors = ["Tom Houlé <[email protected]>"]
66
license = "Apache-2.0 OR MIT"
77

@@ -12,9 +12,9 @@ path = "src/main.rs"
1212
[dependencies]
1313
failure = "0.1"
1414
reqwest = "^0.9.0"
15-
graphql_client = { version = "0.4.0", path = ".." }
15+
graphql_client = { version = "0.5.0", path = ".." }
16+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.5.0" }
1617
structopt = "0.2"
1718
serde = "1.0"
1819
serde_derive = "1.0"
1920
serde_json = "1.0"
20-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.4.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.4.0"
3+
version = "0.5.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

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.4.0"
3+
version = "0.5.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Utility crate for graphql_client"
66
license = "Apache-2.0 OR MIT"
@@ -12,4 +12,4 @@ proc-macro = true
1212
[dependencies]
1313
syn = "0.15"
1414
proc-macro2 = { version = "0.4", features = [] }
15-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.4.0" }
15+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.5.0" }

0 commit comments

Comments
 (0)