From dba297fe55efe57fb025489095e665831d1d15e7 Mon Sep 17 00:00:00 2001 From: "cynic-releaser[bot]" <166170668+cynic-releaser[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:20:25 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 6 ++++++ Cargo.lock | 14 +++++++------- Cargo.toml | 4 ++-- cynic-cli/Cargo.toml | 6 +++--- cynic-parser/CHANGELOG.md | 6 ++++++ cynic-parser/Cargo.toml | 2 +- cynic-proc-macros/Cargo.toml | 2 +- cynic/Cargo.toml | 2 +- schemas/github/Cargo.toml | 2 +- 9 files changed, 28 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4eee88274..7ead4379a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html ## Unreleased - xxxx-xx-xx +## v3.7.4 - 2024-08-01 + +### Changes + +- update Cargo.lock dependencies + ## v3.7.3 - 2024-06-04 ### Changes diff --git a/Cargo.lock b/Cargo.lock index bab6e16f6..be174e5b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1032,7 +1032,7 @@ dependencies = [ [[package]] name = "cynic" -version = "3.7.3" +version = "3.7.4" dependencies = [ "assert_matches", "chrono", @@ -1055,7 +1055,7 @@ dependencies = [ [[package]] name = "cynic-cli" -version = "3.7.3" +version = "3.7.4" dependencies = [ "clap", "colored", @@ -1069,7 +1069,7 @@ dependencies = [ [[package]] name = "cynic-codegen" -version = "3.7.3" +version = "3.7.4" dependencies = [ "assert_matches", "counter", @@ -1106,7 +1106,7 @@ dependencies = [ [[package]] name = "cynic-introspection" -version = "3.7.3" +version = "3.7.4" dependencies = [ "assert_matches", "cynic", @@ -1121,7 +1121,7 @@ dependencies = [ [[package]] name = "cynic-parser" -version = "0.4.5" +version = "0.4.6" dependencies = [ "apollo-parser", "ariadne", @@ -1139,7 +1139,7 @@ dependencies = [ [[package]] name = "cynic-proc-macros" -version = "3.7.3" +version = "3.7.4" dependencies = [ "cynic-codegen", "darling", @@ -1149,7 +1149,7 @@ dependencies = [ [[package]] name = "cynic-querygen" -version = "3.7.3" +version = "3.7.4" dependencies = [ "Inflector", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index dc704822e..807281f34 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,11 +33,11 @@ edition = "2021" homepage = "https://cynic-rs.dev" repository = "https://github.com/obmarg/cynic" license = "MPL-2.0" -version = "3.7.3" +version = "3.7.4" rust-version = "1.72" [workspace.dependencies] -cynic-parser = { path = "cynic-parser", version = "0.4.3" } +cynic-parser = { path = "cynic-parser", version = "0.4.6" } darling = "0.20" rstest = "0.21" syn = "2" diff --git a/cynic-cli/Cargo.toml b/cynic-cli/Cargo.toml index 4282b1475..b71280ab7 100644 --- a/cynic-cli/Cargo.toml +++ b/cynic-cli/Cargo.toml @@ -21,9 +21,9 @@ path = "src/main.rs" [dependencies] clap = { version = "4", features = ["derive"] } colored = "2" -cynic = { path = "../cynic", version = "3.7.3", features = ["http-reqwest-blocking"] } -cynic-introspection = { path = "../cynic-introspection", version = "3.7.3" } -cynic-querygen = { path = "../cynic-querygen", version = "3.7.3" } +cynic = { path = "../cynic", version = "3.7.4", features = ["http-reqwest-blocking"] } +cynic-introspection = { path = "../cynic-introspection", version = "3.7.4" } +cynic-querygen = { path = "../cynic-querygen", version = "3.7.4" } reqwest = { version = "0.12", features = ["blocking"] } thiserror = "1" diff --git a/cynic-parser/CHANGELOG.md b/cynic-parser/CHANGELOG.md index 313a5d83e..0b6703d13 100644 --- a/cynic-parser/CHANGELOG.md +++ b/cynic-parser/CHANGELOG.md @@ -9,6 +9,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html ## Unreleased - xxxx-xx-xx +## v0.4.6 - 2024-08-01 + +### Changes + +- update rust crate apollo-parser to 0.8 ([#996](https://github.com/obmarg/cynic/pull/996)) + ## v0.4.5 - 2024-06-19 ### New Features diff --git a/cynic-parser/Cargo.toml b/cynic-parser/Cargo.toml index 2a2e0c792..1746da254 100644 --- a/cynic-parser/Cargo.toml +++ b/cynic-parser/Cargo.toml @@ -4,7 +4,7 @@ description = "A fast, correct and easy to use GraphQL parser" keywords = ["graphql", "parser", "api"] readme = "README.md" -version = "0.4.5" +version = "0.4.6" homepage = "https://docs.rs/cynic-parser" documentation = "https://docs.rs/cynic-parser" diff --git a/cynic-proc-macros/Cargo.toml b/cynic-proc-macros/Cargo.toml index a42f22608..53ff6399d 100644 --- a/cynic-proc-macros/Cargo.toml +++ b/cynic-proc-macros/Cargo.toml @@ -21,7 +21,7 @@ rkyv = ["cynic-codegen/rkyv"] proc-macro = true [dependencies] -cynic-codegen = { path = "../cynic-codegen", version = "3.7.3" } +cynic-codegen = { path = "../cynic-codegen", version = "3.7.4" } darling.workspace = true quote = "1" syn.workspace = true diff --git a/cynic/Cargo.toml b/cynic/Cargo.toml index a38240da3..e0ed81d32 100644 --- a/cynic/Cargo.toml +++ b/cynic/Cargo.toml @@ -24,7 +24,7 @@ http-reqwest-blocking = ["http-reqwest", "reqwest/blocking", "serde_json"] rkyv = ["cynic-proc-macros/rkyv"] [dependencies] -cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.7.3" } +cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.7.4" } ref-cast = "1.0.15" serde = { version = "1.0.136", features = [ "derive" ] } serde_json = { version = "1.0", optional = true } diff --git a/schemas/github/Cargo.toml b/schemas/github/Cargo.toml index a5d47bbe9..0d40f4d5a 100644 --- a/schemas/github/Cargo.toml +++ b/schemas/github/Cargo.toml @@ -8,4 +8,4 @@ publish = false [dependencies] chrono = { version = "0.4", features = ["serde"] } -cynic = { path = "../../cynic", version = "3.7.3" } +cynic = { path = "../../cynic", version = "3.7.4" }