Skip to content

Commit

Permalink
chore: release v3.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cynic-releaser[bot] authored Feb 20, 2025
1 parent 25dd646 commit b8c8bb7
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## Unreleased - xxxx-xx-xx

## v3.10.1 - 2025-02-20

### Bug Fixes

- allow generic inner types on fields (#1131)

### Changes

- update Cargo.lock dependencies

## v3.10.0 - 2025-02-10

### New Features
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ edition = "2021"
homepage = "https://cynic-rs.dev"
repository = "https://github.com/obmarg/cynic"
license = "MPL-2.0"
version = "3.10.0"
version = "3.10.1"
rust-version = "1.80"

[workspace.dependencies]
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.10.0", features = ["http-reqwest-blocking"] }
cynic-introspection = { path = "../cynic-introspection", version = "3.10.0" }
cynic-querygen = { path = "../cynic-querygen", version = "3.10.0" }
cynic = { path = "../cynic", version = "3.10.1", features = ["http-reqwest-blocking"] }
cynic-introspection = { path = "../cynic-introspection", version = "3.10.1" }
cynic-querygen = { path = "../cynic-querygen", version = "3.10.1" }
reqwest = { version = "0.12", features = ["blocking"] }
thiserror = "1"

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

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

0 comments on commit b8c8bb7

Please sign in to comment.