diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b7d5572..a7063a34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html ## Unreleased - xxxx-xx-xx +## v3.9.0 - 2024-11-11 + +### Changes + +- Bumped `cynic-parser` dependency +- Removed dependency on `counter` ([#1027](https://github.com/obmarg/cynic/pull/1027)) + ### Changes - MSRV is now 1.76 diff --git a/Cargo.lock b/Cargo.lock index b2ade2f3..87e2c712 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1023,7 +1023,7 @@ dependencies = [ [[package]] name = "cynic" -version = "3.8.0" +version = "3.9.0" dependencies = [ "assert_matches", "chrono", @@ -1046,7 +1046,7 @@ dependencies = [ [[package]] name = "cynic-cli" -version = "3.8.0" +version = "3.9.0" dependencies = [ "clap", "colored", @@ -1060,7 +1060,7 @@ dependencies = [ [[package]] name = "cynic-codegen" -version = "3.8.0" +version = "3.9.0" dependencies = [ "assert_matches", "cynic-parser", @@ -1096,7 +1096,7 @@ dependencies = [ [[package]] name = "cynic-introspection" -version = "3.8.0" +version = "3.9.0" dependencies = [ "assert_matches", "cynic", @@ -1111,7 +1111,7 @@ dependencies = [ [[package]] name = "cynic-parser" -version = "0.8.0" +version = "0.8.1" dependencies = [ "apollo-parser", "ariadne", @@ -1137,7 +1137,7 @@ dependencies = [ [[package]] name = "cynic-parser-deser-macros" -version = "3.8.0" +version = "3.9.0" dependencies = [ "proc-macro2", "quote", @@ -1146,7 +1146,7 @@ dependencies = [ [[package]] name = "cynic-proc-macros" -version = "3.8.0" +version = "3.9.0" dependencies = [ "cynic-codegen", "darling", @@ -1156,7 +1156,7 @@ dependencies = [ [[package]] name = "cynic-querygen" -version = "3.8.0" +version = "3.9.0" dependencies = [ "Inflector", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index ab7477c7..8a85969c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,11 +35,11 @@ edition = "2021" homepage = "https://cynic-rs.dev" repository = "https://github.com/obmarg/cynic" license = "MPL-2.0" -version = "3.8.0" +version = "3.9.0" rust-version = "1.76" [workspace.dependencies] -cynic-parser = { path = "cynic-parser", version = "0.8.0" } +cynic-parser = { path = "cynic-parser", version = "0.8.1" } cynic-parser-deser-macros = { path = "cynic-parser-deser-macros" } darling = "0.20" rstest = "0.23" diff --git a/cynic-cli/Cargo.toml b/cynic-cli/Cargo.toml index 300b80a8..a0ecdf69 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.8.0", features = ["http-reqwest-blocking"] } -cynic-introspection = { path = "../cynic-introspection", version = "3.8.0" } -cynic-querygen = { path = "../cynic-querygen", version = "3.8.0" } +cynic = { path = "../cynic", version = "3.9.0", features = ["http-reqwest-blocking"] } +cynic-introspection = { path = "../cynic-introspection", version = "3.9.0" } +cynic-querygen = { path = "../cynic-querygen", version = "3.9.0" } reqwest = { version = "0.12", features = ["blocking"] } thiserror = "1" diff --git a/cynic-parser/CHANGELOG.md b/cynic-parser/CHANGELOG.md index cd83f715..9a44f760 100644 --- a/cynic-parser/CHANGELOG.md +++ b/cynic-parser/CHANGELOG.md @@ -9,6 +9,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html ## Unreleased - xxxx-xx-xx +## v0.8.1 - 2024-11-11 + ### New Features - Added a span for directive arguments diff --git a/cynic-parser/Cargo.toml b/cynic-parser/Cargo.toml index d498bf25..f87a5d5c 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.8.0" +version = "0.8.1" 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 cabdf3c2..c26ecd38 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.8.0" } +cynic-codegen = { path = "../cynic-codegen", version = "3.9.0" } darling.workspace = true quote = "1" syn.workspace = true diff --git a/cynic/Cargo.toml b/cynic/Cargo.toml index 1f1214ff..fc73089e 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.8.0" } +cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.9.0" } 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 913a33a4..a3352efc 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.8.0" } +cynic = { path = "../../cynic", version = "3.9.0" }