Skip to content

Commit 987a72d

Browse files
authored
Release 0.12.0
1 parent 9d67402 commit 987a72d

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ 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.12.0 - 2023-01-12
9+
10+
- Switch to BTree to make codegen's output deterministic
11+
- Add support for `skip_none` and `skip_serializing_none`
12+
- Fix CI
13+
14+
## 0.11.0 - 2022-06-21
915

1016
- The `variables_derives` now trims whitespace from individual derivation traits.
1117
- The new `reqwest-rustls` feature works like the `reqwest` feature but with
@@ -17,6 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1723
- Support Paths in response derives
1824
- cli: Display server responses when introspection failed
1925
- upgrade to graphql_parser 0.4
26+
- Add support for `fragments-other-variant`
2027

2128
## 0.10.0 - 2021-07-04
2229

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.11.0"
3+
version = "0.12.0"
44
authors = ["Tom Houlé <tom@tomhoule.com>"]
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.11.0", optional = true }
22+
graphql_query_derive = { path = "../graphql_query_derive", version = "0.12.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.11.0"
4+
version = "0.12.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.11.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
17-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.11.0" }
16+
graphql_client = { version = "0.12.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
17+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.12.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.11.0"
3+
version = "0.12.0"
44
authors = ["Tom Houlé <tom@tomhoule.com>"]
55
description = "Utility crate for graphql_client"
66
license = "Apache-2.0 OR MIT"

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.11.0"
3+
version = "0.12.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.11.0" }
16+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.12.0" }

0 commit comments

Comments
 (0)