Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
cynic-releaser[bot] authored Nov 20, 2024
1 parent 3ff690f commit bd8a5d5
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 18 deletions.
16 changes: 8 additions & 8 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 @@ -35,11 +35,11 @@ edition = "2021"
homepage = "https://cynic-rs.dev"
repository = "https://github.com/obmarg/cynic"
license = "MPL-2.0"
version = "3.9.0"
version = "3.9.1"
rust-version = "1.76"

[workspace.dependencies]
cynic-parser = { path = "cynic-parser", version = "0.8.3" }
cynic-parser = { path = "cynic-parser", version = "0.8.4" }
cynic-parser-deser-macros = { path = "cynic-parser-deser-macros", version = "0.8.3" }
darling = "0.20"
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.0", features = ["http-reqwest-blocking"] }
cynic-introspection = { path = "../cynic-introspection", version = "3.9.0" }
cynic-querygen = { path = "../cynic-querygen", version = "3.9.0" }
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" }
reqwest = { version = "0.12", features = ["blocking"] }
thiserror = "1"

Expand Down
6 changes: 6 additions & 0 deletions cynic-parser-deser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ Changelog](http://keepachangelog.com/en/1.0.0/).

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## v0.8.4 - 2024-11-20

### New Features

- handle null coercion in cynic-parser-deser ([#1100](https://github.com/obmarg/cynic/pull/1100))

## v0.8.3 - 2024-11-12

### New Features
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.3"
version = "0.8.4"

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

## Unreleased - xxxx-xx-xx

## v0.8.4 - 2024-11-20

### Bug Fixes

- remove erroneous error code from reports ([#1099](https://github.com/obmarg/cynic/pull/1099))
- remove some stray dbg! calls ([#1097](https://github.com/obmarg/cynic/pull/1097))

### Changes

- test & benchmark parsing introspection ([#1098](https://github.com/obmarg/cynic/pull/1098))

## v0.8.1 - 2024-11-11

### New Features
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.3"
version = "0.8.4"

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.9.0" }
cynic-codegen = { path = "../cynic-codegen", version = "3.9.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.9.0" }
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.9.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.9.0" }
cynic = { path = "../../cynic", version = "3.9.1" }

0 comments on commit bd8a5d5

Please sign in to comment.