Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #1118

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## Unreleased - xxxx-xx-xx

## v3.10.0 - 2025-01-21

### New Features

- directive support (#900)

### Changes

- parse schema with cynic_parser in querygen (#1124)
- update Cargo.lock dependencies
- remove reliance on hosted swapi (#1119)
- parse query w/ cynic-parser in querygen (#1125)

### Changes

- Bumped the MSRV to 1.80
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ edition = "2021"
homepage = "https://cynic-rs.dev"
repository = "https://github.com/obmarg/cynic"
license = "MPL-2.0"
version = "3.9.1"
version = "3.10.0"
rust-version = "1.80"

[workspace.dependencies]
cynic-parser = { path = "cynic-parser", version = "0.8.7" }
cynic-parser-deser-macros = { path = "cynic-parser-deser-macros", version = "0.8.7" }
cynic-parser = { path = "cynic-parser", version = "0.9.0" }
cynic-parser-deser-macros = { path = "cynic-parser-deser-macros", version = "0.9.0" }
darling = "0.20"
graphql-mocks.path = "graphql-mocks"
rstest = "0.23"
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.9.1", features = ["http-reqwest-blocking"] }
cynic-introspection = { path = "../cynic-introspection", version = "3.9.1" }
cynic-querygen = { path = "../cynic-querygen", version = "3.9.1" }
cynic = { path = "../cynic", version = "3.10.0", features = ["http-reqwest-blocking"] }
cynic-introspection = { path = "../cynic-introspection", version = "3.10.0" }
cynic-querygen = { path = "../cynic-querygen", version = "3.10.0" }
reqwest = { version = "0.12", features = ["blocking"] }
thiserror = "1"

Expand Down
2 changes: 1 addition & 1 deletion cynic-parser-deser-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Macros for cynic-parser-deser"
keywords = ["graphql", "parser", "deserialization"]
readme = "README.md"

version = "0.8.7"
version = "0.9.0"

homepage = "https://docs.rs/cynic-parser-deser"
documentation = "https://docs.rs/cynic-parser-deser"
Expand Down
2 changes: 1 addition & 1 deletion cynic-parser-deser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Deserialization for cynic-parser Values"
keywords = ["graphql", "parser", "deserialization"]
readme = "README.md"

version = "0.8.7"
version = "0.9.0"

homepage = "https://docs.rs/cynic-parser-deser"
documentation = "https://docs.rs/cynic-parser-deser"
Expand Down
14 changes: 14 additions & 0 deletions cynic-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## Unreleased - xxxx-xx-xx

## v0.9.0 - 2025-01-21

### Breaking Changes

- [**breaking**] better errors on empty graphql documents (#1117)

### New Features

- directive support (#900)

### Changes

- parse schema with cynic_parser in querygen (#1124)

### Breaking Changes

- `Error::span` now returns an `Option<Span>` instead of a `Span`
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.8.7"
version = "0.9.0"

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 @@ -22,7 +22,7 @@ directives = []
proc-macro = true

[dependencies]
cynic-codegen = { path = "../cynic-codegen", version = "3.9.1" }
cynic-codegen = { path = "../cynic-codegen", version = "3.10.0" }
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 @@ -25,7 +25,7 @@ rkyv = ["cynic-proc-macros/rkyv"]
directives = ["cynic-proc-macros/directives"]

[dependencies]
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.9.1" }
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.10.0" }
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.9.1" }
cynic = { path = "../../cynic", version = "3.10.0" }