Skip to content

Commit e1055d8

Browse files
authored
Release 0.15.0 (#558)
1 parent bf32f59 commit e1055d8

File tree

11 files changed

+21
-17
lines changed

11 files changed

+21
-17
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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-
## Unreleased
8+
## 0.15.0 - 2025-12-08
99

1010
- Support for `deprecated` directive on InputValue fields (#553)
1111
- Support for custom variable and response types (#536)

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ members = [
1212
]
1313

1414
[workspace.package]
15+
version = "0.15.0"
1516
rust-version = "1.64.0"

examples/github/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "graphql_query_github_example"
33
version = "0.1.0"
44
authors = ["Tom Houlé <tom@tomhoule.com>"]
55
edition = "2018"
6+
publish = false
67

78
[dev-dependencies]
89
anyhow = "1.0"

examples/hasura/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "graphql_query_hasura_example"
33
version = "0.1.0"
44
authors = ["Mark Catley <mark@catley.net.nz>"]
55
edition = "2018"
6+
publish = false
67

78
[dev-dependencies]
89
anyhow = "1.0"

examples/web/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "web"
33
version = "0.1.0"
44
authors = ["Tom Houlé <tom@tomhoule.com>"]
55
edition = "2018"
6+
publish = false
67

78
[lib]
89
crate-type = ["cdylib", "rlib"]

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

graphql_client/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql_client"
3-
version = "0.14.0"
3+
version.workspace = true
44
authors = ["Tom Houlé <tom@tomhoule.com>"]
55
description = "Typed GraphQL requests and responses"
66
repository = "https://github.com/graphql-rust/graphql-client"
@@ -10,7 +10,7 @@ categories = ["network-programming", "web-programming", "wasm"]
1010
edition = "2018"
1111
homepage = "https://github.com/graphql-rust/graphql-client"
1212
readme = "../README.md"
13-
rust-version.workspace = true
13+
rust-version.workspace = true
1414

1515
[package.metadata.docs.rs]
1616
features = ["reqwest"]
@@ -20,7 +20,7 @@ serde = { version = "1.0.78", features = ["derive"] }
2020
serde_json = "1.0.50"
2121

2222
# Optional dependencies
23-
graphql_query_derive = { path = "../graphql_query_derive", version = "0.14.0", optional = true }
23+
graphql_query_derive = { path = "../graphql_query_derive", version = "0.15.0", optional = true }
2424
reqwest-crate = { package = "reqwest", version = ">=0.11, <=0.12", features = ["json"], default-features = false, optional = true }
2525

2626
[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.14.0"
4+
version.workspace = true
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.12", features = ["json", "blocking"] }
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" }
16+
graphql_client = { version = "0.15.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
17+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.15.0" }
1818
clap = { version = "^4.0", features = ["derive"] }
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.14.0"
3+
version.workspace = true
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.2.0", path = "../graphql-introspection-query" }
11+
graphql-introspection-query = { version = "0.3.0", path = "../graphql-introspection-query" }
1212
graphql-parser = "0.4"
1313
heck = ">=0.4, <=0.5"
1414
lazy_static = "1.3"

0 commit comments

Comments
 (0)