Skip to content

Commit 2e2df18

Browse files
release: cynic-v3.9.1, cynic-parser-v0.8.7 (#1105)
1 parent 6684364 commit 2e2df18

File tree

11 files changed

+37
-21
lines changed

11 files changed

+37
-21
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
88

99
## Unreleased - xxxx-xx-xx
1010

11+
## v3.9.1 - 2024-12-03
12+
13+
### Bug Fixes
14+
15+
- Fields named `str` are now supported ([#1108](https://github.com/obmarg/cynic/pull/1108))
16+
17+
### Changes
18+
19+
- Fixed all rust 1.83 clippy lints ([#1106](https://github.com/obmarg/cynic/pull/1106))
20+
1121
## v3.9.0 - 2024-11-11
1222

1323
### Changes

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ edition = "2021"
3535
homepage = "https://cynic-rs.dev"
3636
repository = "https://github.com/obmarg/cynic"
3737
license = "MPL-2.0"
38-
version = "3.9.0"
38+
version = "3.9.1"
3939
rust-version = "1.76"
4040

4141
[workspace.dependencies]
42-
cynic-parser = { path = "cynic-parser", version = "0.8.6" }
43-
cynic-parser-deser-macros = { path = "cynic-parser-deser-macros", version = "0.8.6" }
42+
cynic-parser = { path = "cynic-parser", version = "0.8.7" }
43+
cynic-parser-deser-macros = { path = "cynic-parser-deser-macros", version = "0.8.7" }
4444
darling = "0.20"
4545
rstest = "0.23"
4646
syn = "2"

cynic-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ path = "src/main.rs"
2121
[dependencies]
2222
clap = { version = "4", features = ["derive"] }
2323
colored = "2"
24-
cynic = { path = "../cynic", version = "3.9.0", features = ["http-reqwest-blocking"] }
25-
cynic-introspection = { path = "../cynic-introspection", version = "3.9.0" }
26-
cynic-querygen = { path = "../cynic-querygen", version = "3.9.0" }
24+
cynic = { path = "../cynic", version = "3.9.1", features = ["http-reqwest-blocking"] }
25+
cynic-introspection = { path = "../cynic-introspection", version = "3.9.1" }
26+
cynic-querygen = { path = "../cynic-querygen", version = "3.9.1" }
2727
reqwest = { version = "0.12", features = ["blocking"] }
2828
thiserror = "1"
2929

cynic-parser-deser-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Macros for cynic-parser-deser"
44
keywords = ["graphql", "parser", "deserialization"]
55
readme = "README.md"
66

7-
version = "0.8.6"
7+
version = "0.8.7"
88

99
homepage = "https://docs.rs/cynic-parser-deser"
1010
documentation = "https://docs.rs/cynic-parser-deser"

cynic-parser-deser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Deserialization for cynic-parser Values"
44
keywords = ["graphql", "parser", "deserialization"]
55
readme = "README.md"
66

7-
version = "0.8.6"
7+
version = "0.8.7"
88

99
homepage = "https://docs.rs/cynic-parser-deser"
1010
documentation = "https://docs.rs/cynic-parser-deser"

cynic-parser/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
99

1010
## Unreleased - xxxx-xx-xx
1111

12+
## v0.8.7 - 2024-12-03
13+
14+
### Changes
15+
16+
- Fixed all rust 1.83 clippy lints ([#1106](https://github.com/obmarg/cynic/pull/1106))
17+
1218
## v0.8.6 - 2024-11-28
1319

1420
### Bug Fixes

cynic-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A fast, correct and easy to use GraphQL parser"
44
keywords = ["graphql", "parser", "api"]
55
readme = "README.md"
66

7-
version = "0.8.6"
7+
version = "0.8.7"
88

99
homepage = "https://docs.rs/cynic-parser"
1010
documentation = "https://docs.rs/cynic-parser"

cynic-proc-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ rkyv = ["cynic-codegen/rkyv"]
2121
proc-macro = true
2222

2323
[dependencies]
24-
cynic-codegen = { path = "../cynic-codegen", version = "3.9.0" }
24+
cynic-codegen = { path = "../cynic-codegen", version = "3.9.1" }
2525
darling.workspace = true
2626
quote = "1"
2727
syn.workspace = true

cynic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ http-reqwest-blocking = ["http-reqwest", "reqwest/blocking", "serde_json"]
2424
rkyv = ["cynic-proc-macros/rkyv"]
2525

2626
[dependencies]
27-
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.9.0" }
27+
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.9.1" }
2828
ref-cast = "1.0.15"
2929
serde = { version = "1.0.136", features = [ "derive" ] }
3030
serde_json = { version = "1.0", optional = true }

0 commit comments

Comments
 (0)