Skip to content

Commit d170ef0

Browse files
authored
Release 0.16.0 (#563)
1 parent 7aff4e3 commit d170ef0

7 files changed

Lines changed: 11 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ 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.16.0 - 2026-01-15
99

10-
- Revert integer ID deserialization support (introduced in #476).
10+
- Revert integer ID deserialization support (introduced in #476). It introduced regressions.
1111

1212
## 0.15.0 - 2025-12-08
1313

Cargo.lock

Lines changed: 4 additions & 4 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ members = [
1212
]
1313

1414
[workspace.package]
15-
version = "0.15.0"
15+
version = "0.16.0"
1616
rust-version = "1.66.0"

graphql_client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.15.0", optional = true }
23+
graphql_query_derive = { path = "../graphql_query_derive", version = "0.16.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/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ pub use graphql_query_derive::*;
3030
))]
3131
pub mod reqwest;
3232

33-
3433
use serde::{Deserialize, Serialize};
3534
use std::collections::HashMap;
3635
use std::fmt::{self, Display, Write};

graphql_client_cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ path = "src/main.rs"
1313

1414
[dependencies]
1515
reqwest = { version = "0.12", features = ["json", "blocking"] }
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" }
16+
graphql_client = { version = "0.16.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
17+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.16.0" }
1818
clap = { version = "^4.0", features = ["derive"] }
1919
serde = { version = "^1.0", features = ["derive"] }
2020
serde_json = "^1.0"

graphql_query_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ proc-macro = true
1313
[dependencies]
1414
syn = { version = "^2.0", features = ["extra-traits"] }
1515
proc-macro2 = { version = "^1.0", features = [] }
16-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.15.0" }
16+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.16.0" }

0 commit comments

Comments
 (0)