Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.15.0 - 2025-12-08

- Support for `deprecated` directive on InputValue fields (#553)
- Support for custom variable and response types (#536)
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ members = [
]

[workspace.package]
version = "0.15.0"
rust-version = "1.64.0"
1 change: 1 addition & 0 deletions examples/github/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "graphql_query_github_example"
version = "0.1.0"
authors = ["Tom Houlé <tom@tomhoule.com>"]
edition = "2018"
publish = false

[dev-dependencies]
anyhow = "1.0"
Expand Down
1 change: 1 addition & 0 deletions examples/hasura/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "graphql_query_hasura_example"
version = "0.1.0"
authors = ["Mark Catley <mark@catley.net.nz>"]
edition = "2018"
publish = false

[dev-dependencies]
anyhow = "1.0"
Expand Down
1 change: 1 addition & 0 deletions examples/web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "web"
version = "0.1.0"
authors = ["Tom Houlé <tom@tomhoule.com>"]
edition = "2018"
publish = false

[lib]
crate-type = ["cdylib", "rlib"]
Expand Down
2 changes: 1 addition & 1 deletion graphql-introspection-query/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphql-introspection-query"
version = "0.2.0"
version = "0.3.0"
authors = ["Tom Houlé <tom@tomhoule.com>"]
edition = "2018"
keywords = ["graphql", "api", "web"]
Expand Down
6 changes: 3 additions & 3 deletions graphql_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphql_client"
version = "0.14.0"
version.workspace = true
authors = ["Tom Houlé <tom@tomhoule.com>"]
description = "Typed GraphQL requests and responses"
repository = "https://github.com/graphql-rust/graphql-client"
Expand All @@ -10,7 +10,7 @@ categories = ["network-programming", "web-programming", "wasm"]
edition = "2018"
homepage = "https://github.com/graphql-rust/graphql-client"
readme = "../README.md"
rust-version.workspace = true
rust-version.workspace = true

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

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

[features]
Expand Down
6 changes: 3 additions & 3 deletions graphql_client_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "graphql_client_cli"
description = "The CLI for graphql-client"
version = "0.14.0"
version.workspace = true
authors = ["Tom Houlé <tom@tomhoule.com>"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/graphql-rust/graphql-client"
Expand All @@ -13,8 +13,8 @@ path = "src/main.rs"

[dependencies]
reqwest = { version = "0.12", features = ["json", "blocking"] }
graphql_client = { version = "0.14.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.14.0" }
graphql_client = { version = "0.15.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.15.0" }
clap = { version = "^4.0", features = ["derive"] }
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
Expand Down
4 changes: 2 additions & 2 deletions graphql_client_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "graphql_client_codegen"
version = "0.14.0"
version.workspace = true
authors = ["Tom Houlé <tom@tomhoule.com>"]
description = "Utility crate for graphql_client"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/graphql-rust/graphql-client"
edition = "2018"

[dependencies]
graphql-introspection-query = { version = "0.2.0", path = "../graphql-introspection-query" }
graphql-introspection-query = { version = "0.3.0", path = "../graphql-introspection-query" }
graphql-parser = "0.4"
heck = ">=0.4, <=0.5"
lazy_static = "1.3"
Expand Down
4 changes: 2 additions & 2 deletions graphql_query_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphql_query_derive"
version = "0.14.0"
version.workspace = true
authors = ["Tom Houlé <tom@tomhoule.com>"]
description = "Utility crate for graphql_client"
license = "Apache-2.0 OR MIT"
Expand All @@ -13,4 +13,4 @@ proc-macro = true
[dependencies]
syn = { version = "^2.0", features = ["extra-traits"] }
proc-macro2 = { version = "^1.0", features = [] }
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.14.0" }
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.15.0" }