Skip to content

Commit db7ccbb

Browse files
authored
Merge pull request #85 from tomhoule/release-0.4.0
Release 0.4.0
2 parents 883babd + 3f4421a commit db7ccbb

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

CHANGELOG.md

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

88
## Unreleased
99

10-
There are a number of breaking new features, read the `Added` section attentively if you are upgrading.
10+
## [0.4.0] - 2018-08-23
11+
12+
There are a number of breaking changes due to the new features, read the `Added` section attentively if you are upgrading.
1113

1214
### Added
1315

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.3.0"
3+
version = "0.4.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.3.0"}
14+
graphql_query_derive = {path = "./graphql_query_derive", version = "0.4.0"}
1515
graphql-parser = "0.2.0"
1616
serde = "1.0"
1717
serde_derive = "1.0"

examples/call_from_js/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ lto = "thin"
1010
crate-type = ["cdylib"]
1111

1212
[dependencies]
13-
graphql_client = { path = "../..", version = "0.2.0" }
13+
graphql_client = { path = "../..", version = "0.4.0" }
1414
wasm-bindgen = "0.2.12"
1515
serde = "1.0.67"
1616
serde_derive = "1.0.67"

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.3.0"
4+
version = "0.4.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.3.0", path = ".." }
15+
graphql_client = { version = "0.4.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.3.0"
3+
version = "0.4.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)