diff --git a/Cargo.lock b/Cargo.lock index bfd5c03d..2a8d6a3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1085,7 +1085,7 @@ dependencies = [ [[package]] name = "cynic-parser" -version = "0.4.0" +version = "0.4.1" dependencies = [ "apollo-parser", "ariadne", diff --git a/Cargo.toml b/Cargo.toml index a0eafc68..80740f0c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ version = "3.7.2" rust-version = "1.72" [workspace.dependencies] -cynic-parser = { path = "cynic-parser", version = "0.4.0" } +cynic-parser = { path = "cynic-parser", version = "0.4.1" } darling = "0.20" rstest = "0.18" syn = "2" diff --git a/cynic-parser/CHANGELOG.md b/cynic-parser/CHANGELOG.md index 0bdd279a..bf118f17 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.1 - 2024-05-31 + +### New Features + +- Added `Value::variables_used` to find variables used in a value + ([#963](https://github.com/obmarg/cynic/pull/963)) + ## v0.4.0 - 2024-05-2 ### Breaking Changes diff --git a/cynic-parser/Cargo.toml b/cynic-parser/Cargo.toml index a4b08b63..cee7def6 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.0" +version = "0.4.1" homepage = "https://docs.rs/cynic-parser" documentation = "https://docs.rs/cynic-parser"