diff --git a/Cargo.lock b/Cargo.lock index 5e65d4ba..dffc6975 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1121,7 +1121,7 @@ dependencies = [ [[package]] name = "cynic-parser" -version = "0.4.2" +version = "0.4.3" dependencies = [ "apollo-parser", "ariadne", diff --git a/Cargo.toml b/Cargo.toml index 42628262..dc704822 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ version = "3.7.3" rust-version = "1.72" [workspace.dependencies] -cynic-parser = { path = "cynic-parser", version = "0.4.2" } +cynic-parser = { path = "cynic-parser", version = "0.4.3" } darling = "0.20" rstest = "0.21" syn = "2" diff --git a/cynic-parser/CHANGELOG.md b/cynic-parser/CHANGELOG.md index 02bb7919..08f6bb0c 100644 --- a/cynic-parser/CHANGELOG.md +++ b/cynic-parser/CHANGELOG.md @@ -9,6 +9,13 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html ## Unreleased - xxxx-xx-xx +## v0.4.3 - 2024-06-04 + +### Bug Fixes + +- `FragmentSpread::fragment` had a missing lifetime + ([#978](https://github.com/obmarg/cynic/pull/978)) + ## v0.4.2 - 2024-06-04 ### New Features diff --git a/cynic-parser/Cargo.toml b/cynic-parser/Cargo.toml index 9fc95c25..5a06d4db 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.2" +version = "0.4.3" homepage = "https://docs.rs/cynic-parser" documentation = "https://docs.rs/cynic-parser"