Skip to content

Commit

Permalink
Prepare v0.14 (#478)
Browse files Browse the repository at this point in the history
* Prepare v0.14

* Update CHANGELOG

* Update update date

* Fix new clippy warning
  • Loading branch information
surma authored Mar 26, 2024
1 parent 5163824 commit 3090e0a
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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).

## 0.14.0 - 2024-03-26

- Add support for GraphQL’s `extend type` directive
- Add support for `graphqls://` schema
- Expose `generate_module_token_stream_from_string` to allow custom macro wrappers

## 0.13.0 - 2023-05-25

- Add support for `@oneOf`
Expand Down
4 changes: 2 additions & 2 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.13.0"
version = "0.14.0"
authors = ["Tom Houlé <[email protected]>"]
description = "Typed GraphQL requests and responses"
repository = "https://github.com/graphql-rust/graphql-client"
Expand All @@ -19,7 +19,7 @@ serde = { version = "^1.0.78", features = ["derive"] }
serde_json = "1.0"

# Optional dependencies
graphql_query_derive = { path = "../graphql_query_derive", version = "0.13.0", optional = true }
graphql_query_derive = { path = "../graphql_query_derive", version = "0.14.0", optional = true }
reqwest-crate = { package = "reqwest", version = "^0.11", 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.13.0"
version = "0.14.0"
authors = ["Tom Houlé <[email protected]>"]
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.11", features = ["json", "blocking"] }
graphql_client = { version = "0.13.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.13.0" }
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" }
clap = { version = "^3.0", features = ["derive"] }
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
Expand Down
2 changes: 1 addition & 1 deletion graphql_client_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphql_client_codegen"
version = "0.13.0"
version = "0.14.0"
authors = ["Tom Houlé <[email protected]>"]
description = "Utility crate for graphql_client"
license = "Apache-2.0 OR MIT"
Expand Down
1 change: 1 addition & 0 deletions graphql_client_codegen/src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ impl OperationId {
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub(crate) struct ResolvedFragmentId(u32);

#[allow(dead_code)]
#[derive(Debug, Clone, Copy)]
pub(crate) struct VariableId(u32);

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.13.0"
version = "0.14.0"
authors = ["Tom Houlé <[email protected]>"]
description = "Utility crate for graphql_client"
license = "Apache-2.0 OR MIT"
Expand All @@ -13,4 +13,4 @@ proc-macro = true
[dependencies]
syn = { version = "^1.0", features = ["extra-traits"] }
proc-macro2 = { version = "^1.0", features = [] }
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.13.0" }
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.14.0" }

0 comments on commit 3090e0a

Please sign in to comment.