Skip to content

Commit 5124a40

Browse files
authored
Merge pull request #374 from graphql-rust/release-0-10-0
Release 0 10 0
2 parents 364bba1 + 2595660 commit 5124a40

File tree

7 files changed

+16
-12
lines changed

7 files changed

+16
-12
lines changed

CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.10.0 - 2021-07-04
11+
1012
- The `web` feature is dropped. You can now use a `reqwest::Client` instead of the custom HTTP client.
1113
- Allow specifying externally defined enums (thanks @jakmeier)
1214
- Make the derive feature optional (but enabled by default)
1315
- `--no-ssl` param in CLI (thanks @danielharbor!)
1416
- The shape of some generated response types changed to be flatter and more ergonomic.
1517
- Many dependencies were dropped
16-
A CLI and derive option to specify a module to import custom scalar from.
18+
- A CLI and derive option to specify a module to import custom scalar from.
1719
Thanks @miterst! ([PR](https://github.com/graphql-rust/graphql-client/pull/354))
1820

1921
## 0.9.0 - 2020-03-13

examples/github/examples/github.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fn main() -> Result<(), anyhow::Error> {
4848
};
4949

5050
let client = Client::builder()
51-
.user_agent("graphql-rust/0.9.0")
51+
.user_agent("graphql-rust/0.10.0")
5252
.default_headers(
5353
std::iter::once((
5454
reqwest::header::AUTHORIZATION,

graphql-introspection-query/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-introspection-query"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Tom Houlé <tom@tomhoule.com>"]
55
edition = "2018"
66
keywords = ["graphql", "api", "web"]

graphql_client/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
[package]
22
name = "graphql_client"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Tom Houlé <tom@tomhoule.com>"]
55
description = "Typed GraphQL requests and responses"
66
repository = "https://github.com/graphql-rust/graphql-client"
77
license = "Apache-2.0 OR MIT"
88
keywords = ["graphql", "api", "web", "webassembly", "wasm"]
99
categories = ["network-programming", "web-programming", "wasm"]
1010
edition = "2018"
11+
homepage = "https://github.com/graphql-rust/graphql-client"
12+
readme = "../README.md"
1113

1214
[dependencies]
1315
serde = { version = "^1.0.78", features = ["derive"] }
1416
serde_json = "1.0"
1517

1618
# Optional dependencies
17-
graphql_query_derive = { path = "../graphql_query_derive", version = "0.9.0", optional = true }
19+
graphql_query_derive = { path = "../graphql_query_derive", version = "0.10.0", optional = true }
1820
reqwest = { version = "^0.11", features = ["json"], optional = true }
1921

2022
[features]

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"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
authors = ["Tom Houlé <tom@tomhoule.com>"]
66
license = "Apache-2.0 OR MIT"
77
repository = "https://github.com/graphql-rust/graphql-client"
@@ -13,8 +13,8 @@ path = "src/main.rs"
1313

1414
[dependencies]
1515
reqwest = { version = "^0.11", features = ["json", "blocking"] }
16-
graphql_client = { version = "0.9.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
17-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.9.0" }
16+
graphql_client = { version = "0.10.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
17+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.10.0" }
1818
structopt = "0.3"
1919
serde = { version = "^1.0", features = ["derive"] }
2020
serde_json = "^1.0"

graphql_client_codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "graphql_client_codegen"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Tom Houlé <tom@tomhoule.com>"]
55
description = "Utility crate for graphql_client"
66
license = "Apache-2.0 OR MIT"
77
repository = "https://github.com/graphql-rust/graphql-client"
88
edition = "2018"
99

1010
[dependencies]
11-
graphql-introspection-query = { version = "0.1.0", path = "../graphql-introspection-query" }
11+
graphql-introspection-query = { version = "0.2.0", path = "../graphql-introspection-query" }
1212
graphql-parser = "^0.2"
1313
heck = "0.3"
1414
lazy_static = "1.3"

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.9.0"
3+
version = "0.10.0"
44
authors = ["Tom Houlé <tom@tomhoule.com>"]
55
description = "Utility crate for graphql_client"
66
license = "Apache-2.0 OR MIT"
@@ -13,4 +13,4 @@ proc-macro = true
1313
[dependencies]
1414
syn = { version = "^1.0", features = ["extra-traits"] }
1515
proc-macro2 = { version = "^1.0", features = [] }
16-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.9.0" }
16+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.10.0" }

0 commit comments

Comments
 (0)