Skip to content

Commit

Permalink
release: v3.6.1 & cynic-parser-v0.2.5 (#920)
Browse files Browse the repository at this point in the history
  • Loading branch information
cynic-releaser[bot] authored Apr 15, 2024
1 parent eaa99e8 commit 980ddd0
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 19 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## Unreleased - xxxx-xx-xx

## [3.6.1](https://github.com/obmarg/cynic/compare/v3.6.0...v3.6.1) - 2024-04-15

### Fixes
- Fixed a regresion in 3.6.0: schemas with directives on the `schema`
definition will now parse

## [3.6.0](https://github.com/obmarg/cynic/compare/v3.5.1...v3.6.2) - 2024-04-12

### Fixed
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ edition = "2021"
homepage = "https://cynic-rs.dev"
repository = "https://github.com/obmarg/cynic"
license = "MPL-2.0"
version = "3.6.0"
version = "3.6.1"
rust-version = "1.69"

[workspace.dependencies]
cynic-parser = { path = "cynic-parser", version = "0.2.4" }
cynic-parser = { path = "cynic-parser", version = "0.2.5" }
darling = "0.20"
rstest = "0.18"
syn = "2"
Expand Down
6 changes: 3 additions & 3 deletions cynic-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
colored = "2"
cynic = { path = "../cynic", version = "3.6.0", features = ["http-reqwest-blocking"] }
cynic-introspection = { path = "../cynic-introspection", version = "3.6.0" }
cynic-querygen = { path = "../cynic-querygen", version = "3.6.0" }
cynic = { path = "../cynic", version = "3.6.1", features = ["http-reqwest-blocking"] }
cynic-introspection = { path = "../cynic-introspection", version = "3.6.1" }
cynic-querygen = { path = "../cynic-querygen", version = "3.6.1" }
reqwest = { version = "0.12", features = ["blocking"] }
thiserror = "1"

Expand Down
18 changes: 15 additions & 3 deletions cynic-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,26 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## Unreleased - xxxx-xx-xx

## [0.2.5](https://github.com/obmarg/cynic/compare/cynic-parser-v0.2.4...cynic-parser-v0.2.5) - 2024-04-15

### Fixes

- Directives on schema definitions are now parsed correctly
([#921](https://github.com/obmarg/cynic/pull/921))
- Schema extensions without operation definitions are now parsed correctly
([#921](https://github.com/obmarg/cynic/pull/921))

## [0.2.4](https://github.com/obmarg/cynic/compare/cynic-parser-v0.2.3...cynic-parser-v0.2.4) - 2024-04-15

### Fixed
- TypeSystemDocument::definitions() now returns an ExactSizeIterator ([#919](https://github.com/obmarg/cynic/pull/919))
### Fixes

- TypeSystemDocument::definitions() now returns an ExactSizeIterator
([#919](https://github.com/obmarg/cynic/pull/919))

## [0.2.3](https://github.com/obmarg/cynic/compare/cynic-parser-v0.2.2...cynic-parser-v0.2.3) - 2024-04-15

### Fixed
### Fixes

- Pretty printing output is now significantly improved, but still not perfect
([#916](https://github.com/obmarg/cynic/pull/916))

Expand Down
2 changes: 1 addition & 1 deletion cynic-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A fast, correct and easy to use GraphQL parser"
keywords = ["graphql", "parser", "api"]
readme = "README.md"

version = "0.2.4"
version = "0.2.5"

homepage = "https://docs.rs/cynic-parser"
documentation = "https://docs.rs/cynic-parser"
Expand Down
2 changes: 1 addition & 1 deletion cynic-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ rkyv = ["cynic-codegen/rkyv"]
proc-macro = true

[dependencies]
cynic-codegen = { path = "../cynic-codegen", version = "3.6.0" }
cynic-codegen = { path = "../cynic-codegen", version = "3.6.1" }
darling.workspace = true
quote = "1"
syn.workspace = true
2 changes: 1 addition & 1 deletion cynic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.0" }
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.6.1" }
ref-cast = "1.0.15"
serde = { version = "1.0.136", features = [ "derive" ] }
serde_json = { version = "1.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion schemas/github/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ publish = false

[dependencies]
chrono = { version = "0.4", features = ["serde"] }
cynic = { path = "../../cynic", version = "3.6.0" }
cynic = { path = "../../cynic", version = "3.6.1" }

0 comments on commit 980ddd0

Please sign in to comment.