Skip to content

Commit d8a7e36

Browse files
committed
Release 0.8.0
1 parent 7e53fe4 commit d8a7e36

File tree

7 files changed

+20
-19
lines changed

7 files changed

+20
-19
lines changed

CHANGELOG.md

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

88
## Unreleased
99

10-
This release sees the switch to the Rust 2018 edition - it is
11-
only compatible with Rust 1.31.0 and later.
10+
## 0.8.0 - 2019-05-24
11+
12+
## Changed
13+
14+
- (BREAKING) This release sees the switch to the Rust 2018 edition - it is only
15+
compatible with Rust 1.31.0 and later. In particular, this changes how the
16+
derive macro is imported. See the README for more details.
17+
- `graphql_client_web` is now deprecated. The browser client has been moved to
18+
the `graphql_client` crate, under the `web` module. **It is only available
19+
with the `web` feature enabled on the `wasm32-unknown-unknown` target.**
1220

1321
## 0.7.1
1422

README.md.skt.md

-7
This file was deleted.

graphql_client/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.7.1"
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.1" }
14+
graphql_query_derive = { path = "../graphql_query_derive", version = "0.8.0" }
1515
serde = { version = "^1.0.78", features = ["derive"] }
1616
serde_json = "1.0"
1717
doc-comment = "0.3.1"

graphql_client_cli/Cargo.toml

+3-3
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.1", path = "../graphql_client" }
18-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.7.1" }
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 = { version = "1.0", features = ["derive"] }
2121
serde_json = "1.0"

graphql_client_codegen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql_client_codegen"
3-
version = "0.7.1"
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql_client_web"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
edition = "2018"
66
description = "Typed GraphQL requests and responses (web integration)"
@@ -10,7 +10,7 @@ categories = ["network-programming", "web-programming", "wasm"]
1010
repository = "https://github.com/graphql-rust/graphql-client"
1111

1212
[dependencies.graphql_client]
13-
version = "0.7.1"
13+
version = "0.8.0"
1414
path = "../graphql_client"
1515
features = ["web"]
1616

graphql_query_derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql_query_derive"
3-
version = "0.7.1"
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.1" }
17+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.8.0" }

0 commit comments

Comments
 (0)