diff --git a/Cargo.lock b/Cargo.lock index abf43d84f..a2b3668fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1111,7 +1111,7 @@ dependencies = [ [[package]] name = "cynic-parser" -version = "0.6.1" +version = "0.6.2" dependencies = [ "apollo-parser", "ariadne", diff --git a/Cargo.toml b/Cargo.toml index 16edf71b0..76e396f7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ version = "3.8.0" rust-version = "1.76" [workspace.dependencies] -cynic-parser = { path = "cynic-parser", version = "0.6.1" } +cynic-parser = { path = "cynic-parser", version = "0.6.2" } darling = "0.20" rstest = "0.23" syn = "2" diff --git a/cynic-parser/CHANGELOG.md b/cynic-parser/CHANGELOG.md index 410224e6e..4418aefe1 100644 --- a/cynic-parser/CHANGELOG.md +++ b/cynic-parser/CHANGELOG.md @@ -9,6 +9,16 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html ## Unreleased - xxxx-xx-xx +## v0.6.2 - 2024-10-24 + +### New Features + +- Added `Span::overlaps` function ([#1065](https://github.com/obmarg/cynic/pull/1065)) + +### Changes + +- The IdReader trait now has a lifetime parameter ([#1064](https://github.com/obmarg/cynic/pull/1064)) + ## v0.6.1 - 2024-10-06 ### Bug Fixes diff --git a/cynic-parser/Cargo.toml b/cynic-parser/Cargo.toml index 022fad660..4ec1dbc89 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.6.1" +version = "0.6.2" homepage = "https://docs.rs/cynic-parser" documentation = "https://docs.rs/cynic-parser"