Skip to content

Commit 33b8a34

Browse files
authored
Release 0.13.0 (#452)
1 parent fcd1f34 commit 33b8a34

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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.13.0 - 2023-05-25
9+
10+
- Add support for `@oneOf`
11+
- Update Ubuntu image for CI
12+
813
## 0.12.0 - 2023-01-12
914

1015
- Switch to BTree to make codegen's output deterministic

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.12.0"
3+
version = "0.13.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.12.0", optional = true }
22+
graphql_query_derive = { path = "../graphql_query_derive", version = "0.13.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.12.0"
4+
version = "0.13.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.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" }
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" }
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.12.0"
3+
version = "0.13.0"
44
authors = ["Tom Houlé <[email protected]>"]
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.12.0"
3+
version = "0.13.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.12.0" }
16+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.13.0" }

0 commit comments

Comments
 (0)