Skip to content

Commit 3090e0a

Browse files
authored
Prepare v0.14 (#478)
* Prepare v0.14 * Update CHANGELOG * Update update date * Fix new clippy warning
1 parent 5163824 commit 3090e0a

File tree

6 files changed

+15
-8
lines changed

6 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## 0.14.0 - 2024-03-26
9+
10+
- Add support for GraphQL’s `extend type` directive
11+
- Add support for `graphqls://` schema
12+
- Expose `generate_module_token_stream_from_string` to allow custom macro wrappers
13+
814
## 0.13.0 - 2023-05-25
915

1016
- Add support for `@oneOf`

graphql_client/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.13.0"
3+
version = "0.14.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Typed GraphQL requests and responses"
66
repository = "https://github.com/graphql-rust/graphql-client"
@@ -19,7 +19,7 @@ serde = { version = "^1.0.78", features = ["derive"] }
1919
serde_json = "1.0"
2020

2121
# Optional dependencies
22-
graphql_query_derive = { path = "../graphql_query_derive", version = "0.13.0", optional = true }
22+
graphql_query_derive = { path = "../graphql_query_derive", version = "0.14.0", optional = true }
2323
reqwest-crate = { package = "reqwest", version = "^0.11", features = ["json"], default-features = false, optional = true }
2424

2525
[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.13.0"
4+
version = "0.14.0"
55
authors = ["Tom Houlé <[email protected]>"]
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.13.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
17-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.13.0" }
16+
graphql_client = { version = "0.14.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
17+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.14.0" }
1818
clap = { version = "^3.0", features = ["derive"] }
1919
serde = { version = "^1.0", features = ["derive"] }
2020
serde_json = "^1.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.13.0"
3+
version = "0.14.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Utility crate for graphql_client"
66
license = "Apache-2.0 OR MIT"

graphql_client_codegen/src/query.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ impl OperationId {
5656
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, PartialOrd, Ord)]
5757
pub(crate) struct ResolvedFragmentId(u32);
5858

59+
#[allow(dead_code)]
5960
#[derive(Debug, Clone, Copy)]
6061
pub(crate) struct VariableId(u32);
6162

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.13.0"
3+
version = "0.14.0"
44
authors = ["Tom Houlé <[email protected]>"]
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.13.0" }
16+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.14.0" }

0 commit comments

Comments
 (0)