Skip to content

Commit

Permalink
fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
obmarg committed Nov 20, 2024
1 parent bd8a5d5 commit 5cdccd9
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 23 deletions.
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 @@ -35,12 +35,12 @@ edition = "2021"
homepage = "https://cynic-rs.dev"
repository = "https://github.com/obmarg/cynic"
license = "MPL-2.0"
version = "3.9.1"
version = "3.9.0"
rust-version = "1.76"

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

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/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

### New Features

- handle null coercion in cynic-parser-deser ([#1100](https://github.com/obmarg/cynic/pull/1100))
- `Vec<T>::deserialize` now handles null coercion ([#1100](https://github.com/obmarg/cynic/pull/1100))

## v0.8.3 - 2024-11-12

Expand Down
8 changes: 2 additions & 6 deletions cynic-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

### 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))
- Removed erroneous error code from reports ([#1099](https://github.com/obmarg/cynic/pull/1099))
- Removed some stray dbg! calls ([#1097](https://github.com/obmarg/cynic/pull/1097))

## v0.8.1 - 2024-11-11

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.1" }
cynic-codegen = { path = "../cynic-codegen", version = "3.9.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 @@ -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.1" }
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.9.0" }
ref-cast = "1.0.15"
serde = { version = "1.0.136", features = [ "derive" ] }
serde_json = { version = "1.0", optional = true }
Expand Down
4 changes: 4 additions & 0 deletions release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,7 @@ changelog_update = true
changelog_include = [
"cynic-parser-deser-macros"
]

[[package]]
name = "cynic-parser-deser-macros"
version_group = "cynic-parser"
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.9.0" }

0 comments on commit 5cdccd9

Please sign in to comment.