Skip to content

Commit

Permalink
Release v3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
obmarg committed Jan 9, 2024
1 parent 274dce7 commit 05e25ca
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 16 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## Unreleased - xxxx-xx-xx

## v3.3.3 - 2024-01-09

### Bug Fixes

- `cynic-introspection` now omits the `{}` if a definition is empty.

## v3.3.2 - 2024-01-08

### Changes
Expand Down
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.

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

[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.3.2", features = ["http-reqwest-blocking"] }
cynic-introspection = { path = "../cynic-introspection", version = "3.3.2" }
cynic-querygen = { path = "../cynic-querygen", version = "3.3.2" }
cynic = { path = "../cynic", version = "3.3.3", features = ["http-reqwest-blocking"] }
cynic-introspection = { path = "../cynic-introspection", version = "3.3.3" }
cynic-querygen = { path = "../cynic-querygen", version = "3.3.3" }
reqwest = { version = "0.11", 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 @@ -21,7 +21,7 @@ rkyv = ["cynic-codegen/rkyv"]
proc-macro = true

[dependencies]
cynic-codegen = { path = "../cynic-codegen", version = "3.3.2" }
cynic-codegen = { path = "../cynic-codegen", version = "3.3.3" }
darling.workspace = true
quote = "1"
syn.workspace = true
2 changes: 1 addition & 1 deletion cynic-querygen-web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "3.3.2"
version = "3.3.3"
name = "cynic-querygen-web"
repository = "https://github.com/obmarg/cynic"
authors = ["Graeme Coupar<graeme@polyandglot.dev>"]
Expand Down
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.3.2" }
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.3.3" }
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 examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cynic-examples"
version = "3.3.2"
version = "3.3.3"
authors = ["Graeme Coupar <grambo@grambo.me.uk>"]
edition = "2018"
publish = false
Expand Down

0 comments on commit 05e25ca

Please sign in to comment.